mirror of
https://github.com/typst/typst
synced 2025-05-14 04:56:26 +08:00
22 lines
434 B
XML
22 lines
434 B
XML
// Test alignment.
|
|
|
|
---
|
|
#page(height: 100pt)
|
|
#stack(dir: ltr,
|
|
align(left, square(size: 15pt, fill: eastern)),
|
|
align(center, square(size: 20pt, fill: eastern)),
|
|
align(right, square(size: 15pt, fill: eastern)),
|
|
)
|
|
#align(center, center, rect(fill: eastern, height: 10pt))
|
|
#align(bottom, stack(
|
|
align(center, rect(fill: conifer, height: 10pt)),
|
|
rect(fill: forest, height: 10pt),
|
|
))
|
|
|
|
---
|
|
#align(center)[
|
|
Lorem Ipsum
|
|
|
|
Dolor
|
|
]
|