Rodolfo Aramayo <[email protected]> writes:
> Writing Genetic phenotypes in Org-Mode I am running into the following
> problem:
>
> When I issue a set of commands that combine Italics and/or superscript I do
> not get expected behavior
>
> 1. /Asm-1/ <==EXPECTED
>
> 2. Asm-1^+ <==NOT EXPECTED
>
Try
Asm-1^{+}
> 3. /Asm-1/^+ <==NOT EXPECTED
>
This can work I believe (with curly braces around the +) but it requires
munging org-emphasis-regexp-components to allow the caret as a postmatch
character. Untested.
> 4. /Asm-1/^5 <==NOT EXPECTED
>
Ditto.
> 5. Asm-1^5 <==EXPECTED
>
> 6. /Asm-1/ ^+ <==NOT EXPECTED
What do you expect here?
>
> 7. /Asm-1/ ^5 <==NOT EXPECTED
>
and here?
> 8. /Asm-1/_+_ <==NOT EXPECTED
>
and here?
> 9. /matA^HMG/ <==EXPECTED
>
> 10. /asm-1^+/ <==NOT EXPECTED
>
Try
/asm-1^{+}/
Nick