typst/tests/typ/layout/pagebreak.typ
2021-10-23 22:52:40 +02:00

21 lines
261 B
XML

// Test forced page breaks.
---
First of two
#pagebreak()
#page(height: 40pt)
---
// Make sure that you can't do page related stuff in a container.
A
#box[
B
#pagebreak()
#page("a4")
]
C
// No consequences from the page("A4") call here.
#pagebreak()
D