Nico Schlömer
Nico Schlömer
MWE: ```latex \documentclass{llncs} \begin{document} \toctitle{Lecture Notes in Computer Science} \tocauthor{Authors' Instructions} Lorem. \end{document} ``` LaTeXML output: ```xml Authors’ Instructions Lorem. ``` LaTeX output: 
With the `article` document class, LaTeXML is pretty good in identifying authors: ```latex \documentclass{article} % \documentclass{abc} \begin{document} \author{Doe, Jane $^1$, Mustermann, Erika $^2$, Dupont, R. $^3$ and Novak, Jan $^3$...
When running the file ```latex \documentclass{article} \usepackage{graphicx} \begin{document} \begin{figure} \includegraphics{4a.eps} \includegraphics{4b.eps} \end{figure} \end{document} ``` through ``` latexmlc --source=fail/main.tex ``` I'm getting an error code 10 without any error message: ```...
MWE: ```latex \topmargin -1.5cm \textwidth 6in \textheight 8.5in \documentclass{article} \begin{document} x \end{document} ``` LaTeXML output: ```xml \topmargin -1.5cm \textwidth6in \textheight8.5in x ```
- In LaTeX, the spaces `\,` and `\thinspace` are 1/6 em = 3/18 em wide. Right now, they're translated to a unicode `THIN SPACE` (0.2em = 3.6/18 em or sometimes...
MWE: ```latex \documentclass{article} \usepackage{amsthm} \begin{document} \begin{proof}[x] \end{proof} \begin{proof}[x.] \end{proof} \begin{proof}[x..] \end{proof} \end{document} ``` LaTeX output: ``` x. x. x.. ``` LaTeXML output: ```xml x. ∎ x.. ∎ x… ∎ ```
[meshio](https://github.com/nschloe/meshio) (a project of mine) can also read gmsh mesh files, and already supports the v4 format. Perhaps this can take some load off of gmshtranslator.
The file `License.txt` claims that SuperLU is distributed under BSD, but that doesn't seem to entirely be the case. I'm looking at [SRC/mc64ad.c](https://github.com/xiaoyeli/superlu/blob/master/SRC/mc64ad.c). One reads there: > The user shall...
I have a repo with a bunch of source files, and some sources files are much larger than others. I'd like to see this reflected in the visual representation, ideally...
### Describe your issue. When calling an `lapack_func` with an (illegal) array argument, only the first element is used, and the rest is silently discarded. It should instead throw an...