mirror of
https://github.com/typst/typst
synced 2025-05-18 11:05:28 +08:00
17 lines
330 B
Typst
17 lines
330 B
Typst
// Test footnotes that break across pages.
|
|
|
|
---
|
|
#set page(height: 200pt)
|
|
|
|
#lorem(5)
|
|
#footnote[ // 1
|
|
A simple footnote.
|
|
#footnote[Well, not that simple ...] // 2
|
|
]
|
|
#lorem(15)
|
|
#footnote[Another footnote: #lorem(30)] // 3
|
|
#lorem(15)
|
|
#footnote[My fourth footnote: #lorem(50)] // 4
|
|
#lorem(15)
|
|
#footnote[And a final footnote.] // 5
|