this post was submitted on 09 Aug 2023
4 points (75.0% liked)

LaTeX

246 readers
1 users here now

A community for the LaTeX typesetting language.

founded 2 years ago
MODERATORS
 

I was wondering if anyone here knew how to create a "curly" apostrophe in LaTeX without having to type out the unicode character for it. I know that the csquotes package is an option, but this only appears to allow making curly single and double quote pairs. I don't want quotes. I want a curly, single apostrophe.

Any help would be greatly appreciated.

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 1 points 2 years ago

Isn't that what you get if you use the ' character for apostrophes? For example:

 \documentclass{article}
 \begin{document}
 My apostrophe's curly. Or is it?
 \end{document}