Fonts & Character Sets ⇒ apostrophe
-
- Posts: 6
- Joined: Thu Nov 05, 2009 11:23 pm
apostrophe
how do i get two apostrophes in the opposite direction .like ′′eagle.′′.In latex of the same form but their direction should be opposite.
Re: apostrophe
I'm not sure exactly what you want. You don't want "smart quotes", but straight quotes, but slanted in opposite directions?
You might try the \textacutedbl and \textgravedbl commands from the textcomp package.
If you do want genuine smart quotes, just do ``this''.
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
yes i want the quotes like ' ' but in the opposite direction.I write them between $' ' $.I get the desired result but they are both in the same direction.
apostrophe
I really don't see why you'd want to do this, but since you do...
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:
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
hey it worked!Thanks a lot! 
