I am trying to export a literal string from Emacs Org-mode to Latex for subsequent export to pdf. The literal string is:

str1\__str2

I have tried the following input in the Org file:

\verb+str1\__str2+

This produces the following code in the .tex file:

\verb+str1\hspace{3ex}str2+

I expected the following code in the .tex file:

\verb+str1\__str2+

I have also tried the following in the Org file:

\begin{verbatim}
str1\__str2
\end{verbatim}

This produces the following code in .tex file:

\begin{verbatim}
str1\hspace{3ex}str2
\end{verbatim}

Including the following option in the Org file has no effect on the output:

#+OPTIONS:     ^:{}

Any help will be highly appreciated.

Thanks.

Sharad

link|improve this question
feedback

2 Answers

If you don't mind the verbatim block, which you indicated above you're ok with, then this:

#+BEGIN_EXAMPLE
   str1\__str2
#+END_EXAMPLE

Produces this:

\begin{verbatim}
str1\__str2
\end{verbatim}
link|improve this answer
Thanks, Wes, for your response. I need to insert this literal string in an Emacs Org table. I can only include a single line per cell in this table. So, this verbatim block will not work for my case. --Sharad – Sharad May 10 '11 at 3:23
That's what I was afraid of, but you didn't specify that constraint. – Wes Hardaker May 10 '11 at 12:58
1  
I suspect this is actually a bug in the latex exporting and should probably be reported as a bug to the org-mode developers. You shouldn't need to do anything special in the first place. – Wes Hardaker May 10 '11 at 13:02
feedback

This ugly workaround may help:

| str1\textbackslash{}\_\_str2  |

I cannot get the backslash thing out of the way, which will not look good on HTML export.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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