You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I used some MathML to LaTeX converters to supply annotations for all MathML formulas on MDN. I also tested some outputs with TeXZilla and noticed that formulas using {align*} weren't properly parsed. Once replaced with \begin{aligned}, it worked fine.
Errored:
\begin{align*}
x + 3y + 4z &= 2 \\ 3y - 4z &= 5 \\ z &= 4\end{align*}
Worked:
\begin{aligned}
x + 3y + 4z &= 2 \\ 3y - 4z &= 5 \\ z &= 4\end{aligned}
Not sure what’s the difference (the rendering seems identical), but other parsers support the {align*} notation. For example, Temml.
The text was updated successfully, but these errors were encountered:
I used some MathML to LaTeX converters to supply annotations for all MathML formulas on MDN. I also tested some outputs with TeXZilla and noticed that formulas using
{align*}
weren't properly parsed. Once replaced with\begin{aligned}
, it worked fine.Errored:
Worked:
Not sure what’s the difference (the rendering seems identical), but other parsers support the
{align*}
notation. For example, Temml.The text was updated successfully, but these errors were encountered: