mirror of
https://github.com/typst/typst
synced 2025-05-15 01:25:28 +08:00
29 lines
452 B
Typst
29 lines
452 B
Typst
// Test implicit alignment math.
|
|
|
|
---
|
|
// Test alignment step functions.
|
|
#set page(width: 300pt)
|
|
$
|
|
"abc" &= c \
|
|
&= c + 1 & "By definition" \
|
|
&= d + 100 + 1000 \
|
|
&= x && "Even longer" \
|
|
$
|
|
|
|
---
|
|
// Test post-fix alignment.
|
|
#set page(width: 300pt)
|
|
$
|
|
& "right" \
|
|
"a very long line" \
|
|
$
|
|
|
|
---
|
|
// Test alternating alignment.
|
|
#set page(width: 300pt)
|
|
$
|
|
"abc" & "abc abc abc" & "abc abc" \
|
|
"abc abc" & "abc abc" & "abc" \
|
|
"abc abc abc" & "abc" & "abc abc abc" \
|
|
$
|