I want to include the following expression without any changes in my LaTeX document:
RES_0.5_SE_5
If I just type like that, LaTeX wants it to be math mode because of the underscores. If I use
\verb|RES_0.5_SE_5|
the text has a different font.
Is there a command to just use ignore math symbols?
Thanks!
\_or use\textunderscore. – Paul Gessler Feb 01 '14 at 19:44catcodes. A simple \catcode`_=12 however does not print the underscore. – Uwe Ziegenhagen Feb 01 '14 at 19:49