Closed OlgaRedozubova closed 3 months ago
Do we have any breaking changes that we need to document @OlgaRedozubova ?
asciimath
and DOCX
I'll prepare a description here.The main changes in the internal tree in the updated version of MathJax@3.2.2:
<mtr>
tag for aligned, align*, align
.
The columnalign
attribute now has the value "right left"
instead of "right left right left right left right left right left right left"
.\operatorname{}
- added grouping to <mrow data-mjx-texclass="OP">
$a \operatorname { m o d } b$
Before:
<math xmlns="http://www.w3.org/1998/Math/MathML">
<mi>a</mi>
<mi data-mjx-texclass="OP">m o d</mi>
<mo data-mjx-texclass="NONE"></mo>
<mi>b</mi>
</math>
After:
<math xmlns="http://www.w3.org/1998/Math/MathML">
<mi>a</mi>
<mrow data-mjx-texclass="OP">
<mi mathvariant="normal">m</mi>
<mi mathvariant="normal">o</mi>
<mi mathvariant="normal">d</mi>
</mrow>
<mi>b</mi>
</math>
‖
instead of ∥
$\|$
<mo data-mjx-texclass="ORD" fence="false" stretchy="false">‖</mo>
instead of <mo data-mjx-texclass="ORD">∥</mo>
\begin{array} { c } 3 \frac { 1 } { 6 } \\ 3 \\\hline \end{array}
<menclose notation="bottom">
instead of <menclose notation="bottom" isframe="true">
$\overline{xyz}$
<mo accent="true">―</mo>
instead of <mo accent="false">¯</mo>
With these changes in mind, changes have been made to the asciimath and mathml for word exports so that they do not break output and tests.
branch:
dev/olga/mathjax-3-2-2
Updated mathjax-full@3.2.2
Fixes:
cases
MathJax package to supportnumcases
.Latex:
$\sqrt[4]{3 \cdot 3 \cdot 3 \cdot 3}=?$
Before:
After:
3. [mmd-converter] Export to DOCX #10156
mmd:
Copying with Math ML (MS Wrod):
Before:
After:
mmd:
Copying with Math ML (MS Wrod):
Before:
After:
4. Fixed Underline using html tag "" does not support? #336
5. Added
cases
MathJax package to supportnumcases
environment.