vote up 1 vote down star

Hi! I am trying to write programming code in latex using the verbatim environment, but when I write

  \begin{verbatim}
     char ch = 'x';
  \end{verbatim}

then the ' -characters around x are displayed incorrectly (they look "curly"). How can I fix this problem?

flag

75% accept rate

4 Answers

vote up 1 vote down check

I have

alt text

What is wrong?

New

If you want to get something like this

alt text

write

\makeatletter
\let \@sverbatim \@verbatim
\def \@verbatim {\@sverbatim \verbatimplus}
{\catcode`'=13 \gdef \verbatimplus{\catcode`'=13 \chardef '=13 }} 
\makeatother
link|flag
The quote is "curly", if I copy a curly quote and paste it into the source code I get a syntax error. – ragnarius Nov 2 at 16:24
And now? I added new information. – Alexey Malistov Nov 2 at 16:27
Thank for the magic, it works! – ragnarius Nov 2 at 16:36
This only works for the default CMTT font; it won't work if you switch fonts. E.g., with \usepackage[T1]{fontenc}. – Will Robertson Nov 2 at 21:50
@Will: It is right. I know. But I wanted to help. And I hope I succeeded. – Alexey Malistov Nov 3 at 11:10
vote up 2 vote down

If you're seeing curly single right quotes in a verbatim environment, then the single right quote in your typewriter font is curly, and that's the correct one to use for what you're doing (which I assume is displaying some C code).

link|flag
1  
Well, it is not the correct one to use because if someone copy and paste the code from my pdf-document then he or she will get a syntax error, because the compiler is expecting the straight single quote... – ragnarius Nov 2 at 15:54
1  
I think that uckelman meant that it is a straight single quote, it just looks curly in the font used... Did you try copying and pasting to see if the character itself was modified? – Chris Nov 2 at 16:14
Yes, I pasted it into emacs and it does not look as a straight quote. – ragnarius Nov 2 at 16:20
Quotes in general are curly, but the quote keys on keyboards (i.e., in ascii) are straight. So if you're trying to represent "what to type" then it's wrong to use curly quotes. – Will Robertson Nov 6 at 4:43
vote up 2 vote down

For displaying source code, you might consider using the listings package; it is quite powerful and offers an option to display “straight” quotation marks.

link|flag
vote up 2 vote down

Load the upquote package to fix this issue in verbatim mode.

If you want straight quotes in monospaced text mode (e.g., \texttt{...}), or indeed in any other font, then you can use the \textquotesingle command defined in the textcomp package:

\documentclass{article}
\usepackage{upquote,textcomp}
\begin{document}
\newcommand\upquote[1]{\textquotesingle#1\textquotesingle}
\verb|'c'| \texttt{\upquote{h}}
\textsf{\upquote{h}} \upquote{h}
\end{document}

This will work well for fonts in any encoding rather than depending on a specific glyph slot (such as \char13 in the default OT1 encoding).

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.