LaTeXML
LaTeXML copied to clipboard
LaTeXML: a TeX and LaTeX to XML/HTML/ePub/MathML translator.
Fixes #2455 . The issue is really excellent in scope and triage - I added the test case here as well. That said, the resolution is just a little tricky,...
I get an error for the `ntheorem` package that seems to weirdly depend on the order of commands: I redefine the `break` inbuild theorem style and then also define another...
MWe ```latex \documentclass{article} \usepackage{combelow} \begin{document} \cb{s} \end{document} ``` Expected output: [Latin Small Letter S with Comma Below](https://www.compart.com/en/unicode/U+0219) LaTeXML output: ```xml \cb s ```
Instead of ```html Solution. ... ``` What about ```html Solution. ... ``` This would make proofs collapsible. Which seems like a really nice feature of html which you can not...
Postprocessing could track which files are being written to the site directory, with relevant metadata (mime type, parent document?). This would make manifest generation more reliable: rather than scanning the...
[Originally Ticket 1697] It seems that more and more people are moving over to biblatex, so we should have some rudimentary support. I started with my private stub `biblatex.sty.ltxml` by...
In comparison to MathJax, LaTeXML, and TEMML seem to ignore vertical spacing in align environments. ``` $$\begin{aligned}{A\\[600pt] B\end{aligned}$$ vs $$\begin{aligned}{A \\ B\end{aligned}$$ ``` MathJax adds rowspacing=... in those cases. Is...
Discovered while checking the tests figure_mixed_content, figure_dual_caption. Figures have the wrong size because they use `\textwidth`, which isn't adjusted inside minipage. Per LaTeX2e sources, minipage updates `\textwidth`, `\columnwidth` within a...
We are quietly producing broken output when a {tabular} is used inside {align}. This may have to do with some fragility between the `` and alignment mechanisms? A minimal example:...
This is mostly a Windows issue, but it can in principle happen anywhere. ARGV is not necessarily UTF-8 and should be decoded first according to the current locale. How do...