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