Does anybody know how to add these marks « bla bla »?
Asked
Active
Viewed 138 times
1 Answers
2
Use the T1 encoding:
\documentclass{article}
\usepackage[T1]{fontenc}
\usepackage{lmodern}
\begin{document}
<<blah blah>>
\end{document}
If your document is UTF-8 encoded, then also direct input works:
\documentclass{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{lmodern}
\begin{document}
«blah blah»
\end{document}

egreg
- 1,121,712
<<? I would've thought you'd need a negative kerning between the two. But obviously you don't. – A.Ellett Dec 05 '13 at 23:11<<and>>(similarly to--and---). – egreg Dec 05 '13 at 23:29<<and>>; the code page doesn't have the guillemets. But switch to UTF-8 as soon as possible. – egreg Dec 06 '13 at 10:16