[Tex/LaTex] Typewriter quotation marks in texttt

punctuationtypewriter

I'd like to do the text

"conservative"

with the quotation marks into a \texttt. However, when I do so, the first quotation mark is removed. I'm using the LNCS documentclass, I'm not sure if this has something to do with it. I also can't escape the first ", then it puts two dots above the c, which is wrong.

Best Answer

this is a bit of a plain-tex hack, but it'll get you what you want.

\texttt{\char`\"}

you might want to make this into a command:

\newcommand*{\ditto}{\texttt{\char`\"}}