Nico Schlömer

Results 241 issues of Nico Schlömer

When using `article`, `\thanks{}` are correctly translated into a `` -- it's really just a footnote with slightly different formatting. When using `amsart`, however, it gets translated into ``. Probably...

packages
postprocessing
minor

```latex \documentclass{IEEEtran} \begin{document} \begin{IEEEproof}[Proof of Pythagoras] abc. \end{IEEEproof} \end{document} ``` LaTeX output: > Proof of Pythagoras: abc. ∎ LaTeXML output: ```xml Proof: abc. ∎ ``` The name `Proof of Pythagoras`...

bug
packages

MWE: ```latex \documentclass{amsart} \begin{document} \urladdr{a} \end{document} ``` LaTeX output: > _URL:_ `a` LaTeXML output: ```xml a ```

bug
packages

Right now, both `a~b` and `a\ b` produce non-breaking spaces when run through LaTeXML. Only `~` produces a non-breaking space in LaTeX though. `\ ` is just a regular breakable...

bug
latexml
needs clarification

One `aligned`: ```latex \documentclass{article} \usepackage{amsmath} \begin{document} \begin{equation} \begin{aligned} a \end{aligned} \end{equation} \end{document} ``` LaTeXML output: ```xml ... ``` --- Two `aligned`: ```latex \documentclass{article} \usepackage{amsmath} \begin{document} \begin{equation} \begin{aligned} a \end{aligned}\\ \begin{aligned}...

enhancement
packages
math parsing

https://ctan.org/pkg/environ MWE: ```latex \documentclass{article} \usepackage{amsmath} \usepackage{environ} \NewEnviron{as}{\begin{align}\begin{split}\BODY\end{split}\end{align}} \begin{document} \begin{as} a & = 1\\ b & = 2 \end{as} \end{document} ``` LaTeX output: ![screenshot_2023-12-04-175942](https://github.com/brucemiller/LaTeXML/assets/181628/391a0e60-9b59-4d27-8f87-c88e49dfefd9) LaTeXML output: ```xml \NewEnviron as (1) 1...

enhancement
packages

MWE: ```latex \documentclass{article} \newtheorem{theorem}{Theorem} \begin{document} \begin{equation} dummy \end{equation} \begin{theorem} \begin{equation} x = 1 \label{leq} \end{equation} \label{lthm} \end{theorem} \ref{leq} \ref{lthm} \end{document} ``` LaTeX output: ![screenshot_2023-12-01-140711](https://github.com/brucemiller/LaTeXML/assets/181628/3925afc0-8ba6-48d0-9b7b-0026aac4c79f) LaTeXML output: ```xml (1) 1 ⁢...

bug
latexml

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