brucemiller / LaTeXML

LaTeXML: a TeX and LaTeX to XML/HTML/ePub/MathML translator.
http://dlmf.nist.gov/LaTeXML/
Other
961 stars 101 forks source link

revtex: tags should close on `. `, not ` ` #2254

Open nschloe opened 1 year ago

nschloe commented 1 year ago

revtex's tags are I. II. etc. for regular sections and Appendix A: etc. for appendices. The LaTeXML output misses the dot/colon at the end.

MWE:

\documentclass{revtex4}
\begin{document}
\section{Introduction}
\appendix
\section{Equations}
\end{document}

LaTeX output: screenshot_2023-10-30-154458

LaTeXML output:

  <section inlist="toc" xml:id="S1">
    <tags>
      <tag>I</tag>
      <tag role="autoref">section I</tag>
      <tag role="refnum">I</tag>
      <tag role="typerefnum">§I</tag>
    </tags>
    <title><tag close=" ">I</tag>Introduction</title>
  </section>
  <appendix inlist="toc" xml:id="A1">
    <tags>
      <tag>Appendix A</tag>
      <tag role="autoref">Appendix A</tag>
      <tag role="refnum">A</tag>
      <tag role="typerefnum">Appendix A</tag>
    </tags>
    <title><tag close=" ">Appendix A</tag>Equations</title>
    <toctitle><tag close=" ">A</tag>Equations</toctitle>
  </appendix>