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

In the minimal example: ```tex \documentclass{article} \begin{document} Table \ref{tab:1} contains an overview.\footnote{outer note} \begin{table} \caption{Caption text.\protect\footnotemark} \label{tab:1} Table content \end{table} \footnotetext{text of in-caption footnote.} \end{document} ``` The `\ref` should fill...

bug
latexml
figures

Offending line, I think: https://github.com/brucemiller/LaTeXML/blob/dfc3bc96306b7f14ace5b4241a9f477a6f433955/lib/LaTeXML/Util/Pathname.pm#L232 It turns out that Cwd returns bytes (`char *`) that need to be decoded in the appropriate locale. The current behaviour causes issues in postprocessing...

bug
latexml

This PR gets most of the low-level font related commands better cooperating, in particular control sequences defined by `\font` are now represented by a `FontDef` which then will change to...

A baffling scope bug, seemingly related to some issues reported on ar5iv. I spotted this in the atoms-and-orbitals test: the content of pgf layers (created via `pgfonlayer`) does not clear...

bug
pgf/tikz

Fix #2376 for PGF/TikZ. The [commit that removed `@viewBox`](https://github.com/brucemiller/LaTeXML/commit/b1d4af1958c1e1e0f222b3e3deb933e04a6e3b92 ) said 'AVOID scaling, in particular viewBox so that text size matches containing document'. I can't quite tell what issue was...

Hello, I have noticed that LaTeXML currently converts certain symbols from the `mathtools` package incorrectly. Specifically, the following conversions are observed: - `\coloneq` is converted to `:-` - `\eqcolon` is...

bug
packages

This is a minor change avoiding a needless error in natbib's \bibitem. A minimal motivating example (that I could turn into a test) is: ```tex \documentclass{article} \usepackage{natbib} \begin{document} \begin{thebibliography}{1} \bibitem[_xy(1899)]{_xyz_1899}...

There seem to be a bit of a bug when using `colorlet` or `definecolor` to mix or lighten the colors used in e.g., `colorboxes`, e.g., in this example white is...

bug
packages

Allow PGF and TikZ to set \pgf@relevantforpicturesizefalse, which is how pictures can override their own bounding box (see 'use as bounding box'). Fixes #2399. As usual: does it break something...

There seems to be some kind of bug with any `includeimage` macro that uses the `trim` and `clip` options: ``` \documentclass[acmsmall,screen]{acmart} \begin{document} \begin{figure} \includegraphics[width=0.1325\columnwidth,trim={630 0 690 0},clip]{img/new_sponza_twig-2state-1level-micromap_00.png} \end{figure} \end{document} ```...

bug
images