I have some code that looks like:
@inlinefmt{html, @math{{\rm Ai}(x)}}
@inlinefmt{info, @math{Ai(x)}}
@inlinefmt{tex, @math{{\rm Ai}(x)}}
The info file and html (with mathjax) look right where we have "Ai" in a roman font and "(x)" in an italicized math font.
However, the pdf file basically prints out "\rmAi(x)" in an italic math font.
If I do
@inlinefmt{tex, {\rm Ai}(x)}
The output is "\rm Ai(x)" in a normal roman font.
I can't figure out how to get this to render the pdf such that it matches the html output.
I'm using makeinfo 6.8.
--