Fonts & Character Sets ⇒ apostrophe
-
- Posts: 6
- Joined: Thu Nov 05, 2009 11:23 pm
apostrophe
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
Re: apostrophe
You might try the \textacutedbl and \textgravedbl commands from the textcomp package.
If you do want genuine smart quotes, just do ``this''.
-
- Posts: 6
- Joined: Thu Nov 05, 2009 11:23 pm
Re: apostrophe
apostrophe
The solution I suggested above---using the textcomp package with the \textacutedbl and \textgravedbl should work out just fine.
$''$ doesn't really give you apostrophes at all, but superscribed prime symbols---used to differentiate related variables in mathematics. It's the same as $^\prime$. Another approach, I suppose would be to use the \backprime command from the AMS Symbols (amssym) package, also superscripted. Those are larger than the ones from textcomp package, and perhaps not as attractive for this purpose.
To compare the two results, compile this small document:
Code: Select all
\documentclass{article}
\usepackage{textcomp}
\usepackage{amssymb}
\begin{document}
\textgravedbl eagle\textacutedbl
$^{\backprime\backprime}$eagle$^{\prime\prime}$
\end{document}
-
- Posts: 6
- Joined: Thu Nov 05, 2009 11:23 pm
Re: apostrophe
