3

Possible Duplicate:
Guillemets in LaTeX («»)

I need to make some quote marks like this: "« »" in my Latex document.

      \begin{document}

       Some text with quote marks like "« »"

      \end{document}  

How can I do?

Ford Prefect
  • 1,029
  • The linked question, unlike this one, states that the OP doesn't want to use babel. If you need these quotation marks in order to comply with your language's typographical conventions (for example french), babel will still be the easiest solution. – T. Verron Jan 06 '13 at 18:56
  • Take a look at csquotes. – You Jan 06 '13 at 19:00

1 Answers1

5

You should use T1 encoding:

\documentclass{article}
\usepackage[T1]{fontenc}
\begin{document}

Some text with quote marks like ``<<'' and ``>>''

\end{document}

enter image description here

If you also encode your input file as UTF-8, you can use direct input:

\documentclass{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\begin{document}

Some text with quote marks like ``«'' and ``»''

\end{document}
egreg
  • 1,121,712