texmath icon indicating copy to clipboard operation
texmath copied to clipboard

A Haskell library for converting LaTeX math to MathML.

Results 33 texmath issues
Sort by recently updated
recently updated
newest added

I'd prefer if math converted to Typst used Unicode characters which is supported by Typst. For instance, the following conversion transforms all elements of the equation into text. ``` >...

Currently, it isn't possible to convert aligned environments containing \intertext. Immediate solution: converting \intertext{...} to $...$ in Typst will give the intended result of intertext Is this solution good enough...

enhancement

Test suite failure for package texmath-0.12.8: ``` differentiable_manifold: FAIL Test output was different from 'test/writer/typst/differentiable_manifold.test'. Output of ["diff","-u","test/wri ter/typst/differentiable_manifold.test","/tmp/differentiable_manifold40-2956.actual"]: --- test/writer/typst/differentiable_manifold.test 2023-06-21 08:17:10.875493918 +0000 +++ /tmp/differentiable_manifold40-2956.actual 2023-08-19 06:26:22.366942398 +0000 @@...

It would be nice to be able to convert color attributes. For example, from MathML ```{mathml} m x + c ``` to/from LaTeX (assuming the color or xcolor package is...

According to the TeXBook, adjacent Rel symbols shouldn't have space between them. In the MathML output, multiple `` are created for each symbol which doesn't seem correct. Example of current...

I use pandoc 3.1.1 in Windows11. When converting ``` \begin{equation*} \begin{aligned} 1= & 2 & & 3 \\ = & 4 & & 5 \\ \end{aligned} \end{equation*} ``` from LaTeX...

bug

In converting from LaTeX math to eqn, \cdots is translated to \\[u22EF] (which leaves a blank space when I convert to pdf). But cdots is a keyword in GNU eqn,...

This latex code: ```latex \begin{align} x &= a+b\\ &= c \end{align} ``` is converted to this MathML code by texmath: ```html x = a + b = c ``` but...

inside math or align mode mode: `$T_{1/2}=\qty{8.0197}{days}$` gives the error ``` [WARNING] Could not convert TeX math T_{1/2}=\qty{8.0197}{days}, rendering as TeX: T_{1/2}=\qty{8.0197}{days} ^ unexpected control sequence \qty expecting "%", "\\label",...