[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Non-underscore way of specifying subscripts in org-mode
From: |
carsten . dominik |
Subject: |
Re: Non-underscore way of specifying subscripts in org-mode |
Date: |
Mon, 03 Sep 2007 00:24:41 -0700 |
User-agent: |
G2/1.0 |
On Sep 2, 7:51 pm, Nordlöw <per.nord...@gmail.com> wrote:
> How do I preventorg-modefrom interpreting my underscores as
> subscript formatting? How can I instead choose another way of
> specifying them. I really think underscores only is a bad way to
> represent subscripts since I want to specify indentifiers as they are
> so that I can grep and search/replace them inside my project just as I
> do with code.
>
> Thanks in advance,
> Nordlöw
(setq org-export-with-sub-superscripts nil)
will turn this off completely.
With
(setq org-export-with-sub-superscripts '{})
M_{star} will still be a subscript, but M_star not.
Hope this helps.
- Carsten