typst-0.9: test/typ/math/matrix-alignment-02.out
--- parse tree ---
[ Comment
, SoftBreak
, Equation
True
[ Code
"typ/math/matrix-alignment-02.typ"
( line 2 , column 3 )
(FuncCall
(Ident (Identifier "mat"))
[ ArrayArg
[ [ Text " a" , Text " a a a" , Text " a a" ]
, [ Text " a a" , Text " a a" , Text " a" ]
, [ Text " a a a" , Text " a" , Text " a a a" ]
]
])
]
, ParBreak
]
--- evaluated ---
document(body: { text(body: [
]),
math.equation(block: true,
body: math.mat(rows: ((text(body: [ a]),
text(body: [ a a a]),
text(body: [ a a])),
(text(body: [ a a]),
text(body: [ a a]),
text(body: [ a])),
(text(body: [ a a a]),
text(body: [ a]),
text(body: [ a a a])))),
numbering: none),
parbreak() })