hsjoihs / SATySFify

I wanna convert my not-too-complicated MathJax into SATySFi
MIT License
3 stars 0 forks source link

Support matrices #2

Closed kory33 closed 4 years ago

hsjoihs commented 4 years ago

From

A=\left( \begin{matrix}
1 & 2 & 3  \\
4 & 5 & 6  \\
7 & 8 & 9 \end{matrix} \right)

we would like to generate

+math(${
  \matrix![
    [${1}; ${2}; ${3}];
    [${4}; ${5}; ${6}];
    [${7}; ${8}; ${9}];
  ]
});

under https://github.com/nekketsuuu/satysfi-matrix

hsjoihs commented 4 years ago

Implemented in https://github.com/hsjoihs/SATySFify/commit/ed9a031fdbe32bbf1cfc367f692ec35cd82c0000 .