typst/tests/typ/meta/document.typ
2023-01-27 11:54:30 +01:00

31 lines
400 B
Typst

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