Re: bug with macro expansion after underscore (subscript)

2021-04-01 Thread Nicolas Goaziou
Hello, "Dauer, Michael" writes: > I cannot expand a macro after underscore, as the following sample shows in > detail: > > #+macro: xxx A > * macro bug > a _{{{xxx}}} > a_{{{xxx}}} The first pair of braces belongs to the sup/superscript syntax, as in a_{foo}. IOW, you need a fourth pair of

bug with macro expansion after underscore (subscript)

2021-01-05 Thread Dauer, Michael
Hi, I cannot expand a macro after underscore, as the following sample shows in detail: #+macro: xxx A * macro bug _{{{xxx}}} a _{{{xxx}}} a_{{{xxx}}} a^{{{xxx}}} a{{{xxx}}} a_A generates: _A a _A a_{{{xxx}}} a^{{{xxx}}} aA a_A thx m