typst/tests/typ/layout/orphan-widow.typ
2022-11-28 17:57:16 +01:00

24 lines
438 B
Typst

// Test widow and orphan prevention.
---
#set page("a8", height: 150pt)
#set text(weight: 700)
// Fits fully onto the first page.
#set text(blue)
#lorem(27)
// The first line would fit, but is moved to the second page.
#lorem(20)
// The second-to-last line is moved to the third page so that the last is isn't
// as lonely.
#set text(maroon)
#lorem(11)
#lorem(13)
// All three lines go to the next page.
#set text(olive)
#lorem(10)