LaTeXML
LaTeXML copied to clipboard
LaTeXML: a TeX and LaTeX to XML/HTML/ePub/MathML translator.
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...
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: 
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$...
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: ```...
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 ```
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...
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...
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....
- 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...
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… ∎ ```