LaTeXML icon indicating copy to clipboard operation
LaTeXML copied to clipboard

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

Open nschloe opened this issue 2 years ago • 0 comments
trafficstars

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>

nschloe avatar Oct 30 '23 14:10 nschloe