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

MWE: ```latex \documentclass{article} \begin{document} \begin{eqnarray}\nonumber\label{coefficientgamma} &&a\\ \end{eqnarray} \ref{coefficientgamma} \end{document} ``` LaTeX output: ![screenshot_2023-11-30-173100](https://github.com/brucemiller/LaTeXML/assets/181628/9b7b2196-cd96-4513-a3a7-974451ee2479) LaTeXML output: ```xml a a ``` (Label definition missing.)

bug
latexml

MWE: ```latex \documentclass{article} \usepackage{tabularx} \usepackage{pbox} \begin{document} Lorem \begin{table}[] \begin{tabularx}{\columnwidth}{X} \pbox{1cm}{x\\y} \end{tabularx} \end{table} ipsum. \section{A} \end{document} ``` LaTeXML output: ```xml \pbox 1cmx y ipsum. 1 1 §1 1A ``` Note how...

enhancement
packages

MWE: ```latex \documentclass{revtex4} \begin{document} \author{Jane X. Doe} \affiliation{Lorem} \altaffiliation[Also at ]{Ipsum} \maketitle \end{document} ``` LaTeX output: ![screenshot_2023-11-02-170332](https://github.com/brucemiller/LaTeXML/assets/181628/ed7bd6c0-c521-42dd-ae7a-a74f98fa7652) LaTeXML output: ```xml Jane X. Doe Lorem [ ``` Seen in the wild...

enhancement
packages

MWE: ```latex \documentclass{article} \newcommand{\Scal}{\mathcal{S}} \renewcommand\SS{\mathcal{S}} \begin{document} $\Scal$ x $\SS{\gamma}$ \end{document} ``` LaTeXML output: ```xml S x ⁢ SS γ ``` Expected output: ```xml [...] [...] ``` (Resolve `\SS`.)

enhancement
latexml

MWE: ```latex \documentclass{acmart} \begin{document} \begin{figure}[h] \caption{Lorem} \Description{ipsum} \end{figure} \end{document} ``` LaTeXML output: ```xml 1Lorem Figure 1Lorem \Description ipsum ```

enhancement
packages
accessibility

MWE: ```latex \documentclass[RNAAS]{aastex62} \begin{document} \section{abc} \end{document} ``` LaTeX output: ![screenshot_2023-11-27-111212](https://github.com/brucemiller/LaTeXML/assets/181628/a66c465a-f855-4b22-b9ab-d8b4f0b6bbf9) LaTeXML output: ```xml 1abc ``` (Superfluous `1`.)

enhancement
packages

I'm trying to convert a document that has figures in EPS format, and I'm facing the following error: > Error:imageprocessing:imageclass No image processing module found to convert types During the...

question
installation

Hello, does anyone have an idea why latexml sometimes stucks at the point: | Digesting > Processing > Loading > Loading > Loading > Processing > Processing definitions C:/Users/.../.../l |ernel.tds/tex/latex/l3kernel/expl3-code.tex

packages
regression
texlive 2023

SVG images can be embedded via the `` tag or via the `` tag. LaTeXML uses the latter, and it causes issues with accessibility technologies [1]. A good starting point...

enhancement
postprocessing
schema
accessibility

Motivating example from converting a paper using expl3, which takes a good deal of time to load through each piece of the library, thus letting me see this message clearly...

enhancement
minor
documentation