Fonts & Character Setsapostrophe

Information and discussion about fonts and character sets (e.g. how to use language specific characters)
Post Reply
sidkat2006
Posts: 6
Joined: Thu Nov 05, 2009 11:23 pm

apostrophe

Post by sidkat2006 »

how do i get two apostrophes in the opposite direction .like ′′eagle.′′.In latex of the same form but their direction should be opposite.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX Beginner's Guide LaTeX Cookbook LaTeX TikZ graphics TikZによるLaTeXグラフィックス
User avatar
frabjous
Posts: 2064
Joined: Fri Mar 06, 2009 12:20 am

Re: apostrophe

Post by frabjous »

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''.
sidkat2006
Posts: 6
Joined: Thu Nov 05, 2009 11:23 pm

Re: apostrophe

Post by sidkat2006 »

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.
User avatar
frabjous
Posts: 2064
Joined: Fri Mar 06, 2009 12:20 am

apostrophe

Post by frabjous »

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:

Code: Select all

\documentclass{article}
\usepackage{textcomp}
\usepackage{amssymb}
\begin{document}

\textgravedbl eagle\textacutedbl

$^{\backprime\backprime}$eagle$^{\prime\prime}$

\end{document}
sidkat2006
Posts: 6
Joined: Thu Nov 05, 2009 11:23 pm

Re: apostrophe

Post by sidkat2006 »

hey it worked!Thanks a lot! :D
Post Reply