[Tex/LaTex] Quotation mark problem

punctuation

Possible Duplicate:
Quotation with double quote and O results in Ö

I'm having a problem to write this in LaTeX: "real-world" objects. My code is this

``real$-$world" objects

But this gives me "realwordöbjects" … I tried \glqq and \grqq but that's not really what I want. \" didn't work either.

Best Answer

You should use two ' signs instead of one " sign. The latter is an active character in many babel languages, and "o produces ö. (Also, instead of switching to math mode to produce a minus sign, simply use a hyphen.)

\documentclass{article}

\usepackage[english,dutch]{babel}

\begin{document}

``real-world" objects

``real-world'' objects

\end{document}

enter image description here

Related Question