LaTeXML icon indicating copy to clipboard operation
LaTeXML copied to clipboard

LaTeXML: a TeX and LaTeX to XML/HTML/ePub/MathML translator.

Results 223 LaTeXML issues
Sort by recently updated
recently updated
newest added
trafficstars

Packages requested: - mhchem.sty - bpchem.sty - chemfig.sty Part of the larger #559 issue for providing packages currently in use by latex-writing scientists. A chemistry postdoctoral fellow recently requested support...

enhancement
packages

The [apacite](https://www.ctan.org/pkg/apacite?lang=en) package appears to be essential for a number of scientific subfields that follow the APA citation guidelines. It has been requested in Authorea, in particular w.r.t the `\citeNP`...

enhancement
packages
arXiv

MWE: ```latex \documentclass{llncs} \begin{document} \keywords{Lorem \and ipsum} \maketitle \keywords{Lorem \and ipsum} \end{document} ``` LaTeXML output: ```xml Lorem and ipsum Lorem ipsum ```

bug
packages

As reported by @rzach in https://github.com/vlmantova/bookml/issues/11, when using `\usepackage[cal=boondoxo]{mathalfa}`, LaTeXML should redefine `\mathcal` as an alias for `\mathscr`. As of now, it annotates the output of `\mathcal` with the class...

enhancement
packages

Fix #2235, at least when it comes to empty set and (capital) script characters. Unicode specifies a few other sequences but I haven't found which macros or fonts should have...

```latex \documentclass{revtex4} % \documentclass{article} \begin{document} \section{iNtRoDuCtIoN} \end{document} ``` LaTeX output: ![screenshot_2023-10-31-171240](https://github.com/brucemiller/LaTeXML/assets/181628/a1c407e3-213d-4438-83f5-ad7db28fed2e) LaTeXML output: ```xml IiNtRoDuCtIoN ```

enhancement
packages

MWE: ```latex \documentclass{nature} \spacing{1} \begin{document} a \end{document} ``` LaTeXML output: ```xml \spacing 1 a ```

enhancement
packages

MWE: ```latex \documentclass{elsarticle} \begin{document} \begin{frontmatter} \begin{keyword} Lorem \MSC[abc] ipsum \end{keyword} \end{frontmatter} \end{document} ``` LaTeX output: ![screenshot_2023-10-31-130359](https://github.com/brucemiller/LaTeXML/assets/181628/1d0921a9-d414-4ecc-8ac7-8478036091f4) LaTeXML output: ```xml Lorem [abc] ipsum ``` (Note the literal treatment of `[abc]`.)

bug
packages

MWE: ```latex \documentclass{elsarticle} \begin{document} \begin{frontmatter} \author{Jane Doe} \ead[url]{https://example.com} \end{frontmatter} \end{document} ``` LaTeX output: ![screenshot_2023-10-31-131120](https://github.com/brucemiller/LaTeXML/assets/181628/423ca332-2406-4684-8287-b669c6e7c602) LaTeXML output: ```xml Jane Doe [ url]https://example.com ```

bug
packages

MWE: ```latex \documentclass{article} \begin{document} \section{\bigskip Introduction} \end{document} ``` LaTeX output: ![screenshot_2023-10-30-205902](https://github.com/brucemiller/LaTeXML/assets/181628/a96336da-4e7b-462c-b4a4-186bd627c12a) LaTeXML output: ```xml 1 1 §1 1Introduction ```

question