typst/tests/typ/layout/pagebreak.typ
Laurenz c0f5cd011f Slim down and organize paper sizes
Co-Authored-By: Martin <mhaug@live.de>
2021-10-07 14:11:56 +02:00

21 lines
265 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("iso-a4")
]
C
// No consequences from the page("A4") call here.
#pagebreak()
D