LaTeXML icon indicating copy to clipboard operation
LaTeXML copied to clipboard

JATS: <monospace> not output into JATS

Open castedo opened this issue 10 months ago • 0 comments

REPRO STEPS: With the following input.tex:

\documentclass[]{article}
\begin{document}
The code is \texttt{FOOBAR}.
\end{document}

run through latexmlc --format=jats input.tex GOT:

...
<p id="p1">The code is FOOBAR.</p>
...

EXPECTED:

...
<p id="p1">The code is <monospace>FOOBAR</monospace>.</p>
...

VERSION: 0.8.8

castedo avatar Apr 11 '24 23:04 castedo