Text FormattingDouble Quotation Marks

Information and discussion about LaTeX's general text formatting features (e.g. bold, italic, enumerations, ...)
Post Reply
gremlint
Posts: 16
Joined: Tue Oct 09, 2012 6:04 am

Double Quotation Marks

Post by gremlint »

I am a very new user, and I'm am frustrated by the apparent inconsistency between user tutorials and what actually happens with LaTeX when I use it.

I would like to use double quotation marks in text. But I understand that the double quotation on the apostrophe key is actually used as a formatting symbol. I would rather not have to type \textquotedblleft and \textquotedblright every bloody time I need a double quotation. But the alternative — typing ' ' is not working, despite that fact that two tutorials told me that it would.

This does not inspire confidence in the usefulness of going up this steep learning curve of LaTeX.

Please help.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

gremlint
Posts: 16
Joined: Tue Oct 09, 2012 6:04 am

Double Quotation Marks

Post by gremlint »

Well, I think I just got my answer from another old thread. It seems that double typing the key to the left of the "1" key (i.e. ` `) will produce a substitute for \textquotedblleft ... while typing a regular " will still produce a \textquotedblright ... although I have no idea why.

Sorry for cluttering the board.
User avatar
cgnieder
Site Moderator
Posts: 2000
Joined: Sat Apr 16, 2011 7:27 pm

Double Quotation Marks

Post by cgnieder »

Indeed every tutorial should mention this:

Code: Select all

\documentclass{article}
\begin{document}
 A ``quoted'' word.
\end{document}
Besides there is also csquotes:

Code: Select all

\documentclass{article}
\usepackage{csquotes}
\begin{document}
 A \enquote{quotation with an \enquote{inner} quotation.}
\end{document}
Regards
site moderator & package author
Post Reply