Open tmke8 opened 4 months ago
Example of smallmatrix
:
Input:
\Big(\begin{smallmatrix}
a & b\\
c & d
\end{smallmatrix}\Big)
Output:
<math display="block">
<mo maxsize="1.623em" minsize="1.623em">(</mo>
<mtable scriptlevel="1">
<mtr>
<mtd>
<mi>a</mi>
</mtd>
<mtd>
<mi>b</mi>
</mtd>
</mtr>
<mtr>
<mtd>
<mi>c</mi>
</mtd>
<mtd>
<mi>d</mi>
</mtd>
</mtr>
</mtable>
<mo maxsize="1.623em" minsize="1.623em">)</mo>
</math>
Test case for array
:
\left(\begin{array}{ccc|c}
-2 & 3 & 1 & 0 \\
1 & 0 & 1 & 3
\end{array}\right)
\begin{array}
– seems to be the same as\begin{matrix}
but with configurable horizontal alignment\begin{subarray}
see #70\begin{smallmatrix}
– likematrix
but withscriptlevel=1
set; actually, the spacing should also be reduced, but temml doesn't do that\begin{gathered}
– likealigned
but without any aligning functionality; always centered\begin{split}
\begin{alignat}
(andalignat*
,alignedat
)