mirror of
https://github.com/typst/typst
synced 2025-05-13 20:46:23 +08:00
15 lines
181 B
XML
15 lines
181 B
XML
// Test that you can't do page related stuff in a container.
|
|
|
|
---
|
|
A
|
|
#box[
|
|
B
|
|
#pagebreak()
|
|
#set page("a4")
|
|
]
|
|
C
|
|
|
|
// No consequences from the page("A4") call here.
|
|
#pagebreak()
|
|
D
|