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?
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?
You should use T1 encoding:
\documentclass{article}
\usepackage[T1]{fontenc}
\begin{document}
Some text with quote marks like ``<<'' and ``>>''
\end{document}

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}
babel. If you need these quotation marks in order to comply with your language's typographical conventions (for example french),babelwill still be the easiest solution. – T. Verron Jan 06 '13 at 18:56csquotes. – You Jan 06 '13 at 19:00