Quotation Mark in LaTeX – Left (“) right (”)

In this tutorial, I will show you how we can write all types of quotation marks in LaTeX.

NameCommandOutput
Single right quotation'right quote
Double right quotation''double right quote
Double right quotation"double right quote
Single left quotation`single left quote
Double left quotation``double left quote

 

In LaTeX, if we use ‘ (single quote) or ” (single quote two times) or ” (a double quote), all of these will produce the right quotation mark symbol.

We use these symbols generally at the end of our quote text.

But if we want to wrap a sentence or text in quotation marks, we need to use the quotation mark at the very beginning and at the end.

The direction of the quotation mark should be opposite to each other.

\documentclass{article}
\begin{document}

She said "I like CodeSpeedy"

\end{document}

Output:

quotation mark reversed at the beginning latex

As you can see, the quotation mark at the beginning of the quote is reversed. We need to fix it.

Write left quotation mark at the beginning of a quote

\documentclass{article}
\begin{document}

She said ``I like CodeSpeedy"

\end{document}

Output:

quote in LaTeX

 

Leave a Reply

Your email address will not be published. Required fields are marked *