When I export to PDF via org-mode (C-c C-e d), any words with underscores end up being partially converted to subscript. How can I prevent this from happening?

I found this article on the subject:

Disabling Underscore subscript in Emacs Tex Mode

However, I either wasn't able to figure out the correct elisp or it simply didn't work. Note, I don't want to change any global font options. I only want this fix to apply to tex/latex/org-mode.

I also found this post, though it didn't work either:

disable subscript superscript raise/lower?

link|improve this question

feedback

4 Answers

You can disable super/subscripting within an org file by adding the following line:

#+OPTIONS: ^:nil

Check the org manual for more options. (C-c C-e t inserts a template containing all the options.)

link|improve this answer
6  
you can also have '^:{}' this will still allow you to have subscript if you use curly braces, i.e. my_var won't give you subscript but F_{t} will. See also the org-mode manual: orgmode.org/manual/Export-options.html#Export-options – danielpoe Mar 31 '09 at 7:46
feedback
up vote 7 down vote accepted

I was able to solve the issue by setting the following variable:

(setq org-export-with-sub-superscripts nil)
link|improve this answer
feedback

Do you want to prevent subscripts in the onscreen display of the source file or in the text of the output PDF? If the latter, then you want

\usepackage{underscore}

It won't break the use of underscores in maths mode, either.

link|improve this answer
feedback

For individual cases, insert a literal underscore this way:

text text one\textunderscore{}two text
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.