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

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: ```latex \documentclass{revtex4} \begin{document} \section{Introduction} \appendix...

enhancement
packages
minor

MWE: ```latex \documentclass{llncs} \begin{document} \toctitle{Lecture Notes in Computer Science} \tocauthor{Authors' Instructions} Lorem. \end{document} ``` LaTeXML output: ```xml Authors’ Instructions Lorem. ``` LaTeX output: ![screenshot_2023-10-30-150739](https://github.com/brucemiller/LaTeXML/assets/181628/25da9afe-02d6-4c8c-88a6-080433f0934e)

packages
minor

With the `article` document class, LaTeXML is pretty good in identifying authors: ```latex \documentclass{article} % \documentclass{abc} \begin{document} \author{Doe, Jane $^1$, Mustermann, Erika $^2$, Dupont, R. $^3$ and Novak, Jan $^3$...

enhancement
packages

When running the file ```latex \documentclass{article} \usepackage{graphicx} \begin{document} \begin{figure} \includegraphics{4a.eps} \includegraphics{4b.eps} \end{figure} \end{document} ``` through ``` latexmlc --source=fail/main.tex ``` I'm getting an error code 10 without any error message: ```...

bug
installation

MWE: ```latex \topmargin -1.5cm \textwidth 6in \textheight 8.5in \documentclass{article} \begin{document} x \end{document} ``` LaTeXML output: ```xml \topmargin -1.5cm \textwidth6in \textheight8.5in x ```

enhancement
latexml

Installed Ubuntu 23.10 today and noticed that `make test` fails due to `Pod::Find` not being installed. According to a quick `apt-file search Pod/Find.pm` that file is available through the apt...

documentation
installation

Do you know what may cause latexmlpost conversion to HTML fail abruptly when gif or pdf images are used as source images in Figure environment? The process ends abruptly with...

bug
postprocessing

Discovered while trying to compile the LaTeX News https://www.latex-project.org/news/latex2e-news/: the argument of `\title` is expanded immediately, but it contains a macro that is only defined later, and so it fails....

bug
latexml

- In LaTeX, the spaces `\,` and `\thinspace` are 1/6 em = 3/18 em wide. Right now, they're translated to a unicode `THIN SPACE` (0.2em = 3.6/18 em or sometimes...

enhancement

MWE: ```latex \documentclass{article} \usepackage{amsthm} \begin{document} \begin{proof}[x] \end{proof} \begin{proof}[x.] \end{proof} \begin{proof}[x..] \end{proof} \end{document} ``` LaTeX output: ``` x. x. x.. ``` LaTeXML output: ```xml x. ∎ x.. ∎ x… ∎ ```

enhancement
packages
minor