typst/tests/typ/style/document.typ
2022-11-26 23:52:01 +01:00

31 lines
400 B
Typst

// Test document and page-level styles.
---
// This is okay.
// Ref: false
#set document(title: "Hello")
---
Hello
// Error: 1-30 must appear before any content
#set document(title: "Hello")
---
#box[
// Error: 3-32 not allowed here
#set document(title: "Hello")
]
---
#box[
// Error: 3-18 not allowed here
#set page("a4")
]
---
#box[
// Error: 3-15 not allowed here
#pagebreak()
]