LaTeXML
LaTeXML copied to clipboard
LaTeXML: a TeX and LaTeX to XML/HTML/ePub/MathML translator.
I 've run LaTeXML 0.8.8 with ~16k formulae and collected/categorized my findings (and simplified the formulae as far as I could) in the > mathparser.tex with some comments about the...
The wiki page https://github.com/brucemiller/LaTeXML/wiki/Porting-LaTeX-packages-for-LaTeXML has no content.
I am trying to use `\symbol{"XXXX}` the way it is used in LuaTeX, that is, to pick a character by its Unicode codepoint. That does not work in LaTeXML because...
This is something I've come across while working on #1734. Compiling the following ``` tex \documentclass{article} \begin{filecontents*}[overwrite]{\jobname.latexml} DefMacro('\dumpArg {}', sub { my ($gullet, $arg) = @_; print STDERR "args:\n"; foreach...
Use URI::file for serialising and deserialising paths written to XML for `@graphic`, `@candidates`, and the processing instructions 'searchpaths' and 'graphicspath'. It also replaces previous manual uses of URI::file. This prevents...
Thanks for the nice work. I'm the maintainer of the LaTeX package **causets**, which is based on TikZ. I have been asked for support with the experimental feature on arXiv...
When using `\tikzexternalize` from the TikZ library "external", latexml generates a warning and an error for each tikzpicture in the document: ```tex \documentclass{article} \usepackage{tikz} \usetikzlibrary{external} \tikzexternalize \begin{document} \begin{tikzpicture} \node [draw=black]...
Compare the PDF and HTML: ``` \documentclass[11pt]{amsart} \title{Bug report} \usepackage{bookml/bookml} \begin{document} \newtheorem{exercisenonumber}{} \newtheorem{theorem}{Theorem} \begin{exercisenonumber} [Exercise name] Test \end{exercisenonumber} \begin{theorem} [Theorem name] Test \end{theorem} \end{document}
Compare PDF and HTML: ``` \documentclass[11pt]{amsart} \title{Bug report} \usepackage{datetime2} \begin{document} \today \\ \DTMnow \end{document}   @xworld21
Try ```latex \usepackage{tikz} \begin{tikz} \node[rectangle, draw] {\vbox{Hello World}}; \end{tikz} ``` LaTeXML computes that the vertical box, for some reason, is almost 150pt high, much more than two rows of text....