Vincenzo Mantova
Vincenzo Mantova
Cause: https://github.com/brucemiller/LaTeXML/blob/3875cd64faeb5bdc275d595cb6af772958a51080/lib/LaTeXML/resources/XSLT/LaTeXML-block-xhtml.xsl#L698 the hardcoded '3' does not check whether there are equation numbers at all in the whole group. Effect: ```latex \begin{align*} a & b & c \\ d &...
Specifically, the handling of equation numbers is unclear if equation groups are nested. https://github.com/brucemiller/LaTeXML/blob/3875cd64faeb5bdc275d595cb6af772958a51080/lib/LaTeXML/resources/XSLT/LaTeXML-block-xhtml.xsl#L465 seems to assume that there can be at most one nested equation group. https://github.com/brucemiller/LaTeXML/blob/3875cd64faeb5bdc275d595cb6af772958a51080/lib/LaTeXML/resources/XSLT/LaTeXML-block-xhtml.xsl#L549 checks that...
I am reviewing the aligned equation stylesheet, and the element `ltx:constraint` is mentioned there, and in the schema. However, grepping for `constraint` does not find any constructor that actually creates...
The option `nostar` was removed in 2015 and it's been generating an error since 2017: https://ctan.org/ctan-ann/id/[email protected] Indeed, `t/ams/mathtools.tex` does not compile! Reference: https://mirrors.ctan.org/macros/latex/contrib/mathtools/mathtools.pdf
LaTeXML uses a naive check to decide if `mathvariant="normal"` should be applied to single character identifiers: https://github.com/brucemiller/LaTeXML/blob/3875cd64faeb5bdc275d595cb6af772958a51080/lib/LaTeXML/Post/MathML.pm#L717 However, MathML Core prescribes that the automatic italic conversion only applies to the...
...and presumably any other variant whose XMath representation is ascii+variant rather than straight Unicode. For example: ```latex \documentclass{article} \usepackage{amsfonts} \usepackage{mathrsfs} \begin{document} \newbox\test \setbox\test\hbox{$A$} sizes: \the\wd\test\ x \the\ht\test\ x \the\dp\test \setbox\test\hbox{$\mathcal{A}$}...
Fix #2679 more or less as we discussed, but with more care about how the keys interact with each other: - if artifact is true, `@description` is set to empty...
The variable `--fo_width` uses em units, based on the font size of its content. However, changes in font size are applied at different times in HTML. In this example: ```latex...
Fix #2636. Now LaTeXML passes all tests on Cygwin, and EPUBs seem to be generated correctly.
graphicx introduced two options at the very end of 2024: - `actualtext` is additional text for accessibility (this is meant as 'replacement' text, rather than a descriptive text that goes...