typst/tests/suite/model/title.typ
Johann Birnick d0026093d4
Add title element (#5618)
Co-authored-by: Laurenz <laurmaedje@gmail.com>
2025-08-06 08:13:41 +00:00

25 lines
555 B
Typst

// Test title element.
--- title render html ---
#set document(title: "My title")
#title()
= A level one heading
--- title-with-body render html ---
#set document(title: "My title")
#title[My display title]
--- title-with-body-auto render ---
#set document(title: "My title")
#title(auto)
--- title-show-set ---
#show title: set text(blue)
#title[A blue title]
--- title-unset ---
// Error: 2-9 document title was not set
// Hint: 2-9 set the title with `set document(title: [...])`
// Hint: 2-9 or provide an explicit body with `title[..]`
#title()