mirror of
https://github.com/typst/typst
synced 2025-05-13 20:46:23 +08:00
13 lines
280 B
Typst
13 lines
280 B
Typst
// In this bug, there was a bit of space below the heading because weak spacing
|
|
// directly before a layout-induced column or page break wasn't trimmed.
|
|
|
|
---
|
|
#set page(height: 60pt)
|
|
#rect(inset: 0pt, columns(2)[
|
|
Text
|
|
#v(12pt)
|
|
Hi
|
|
#v(10pt, weak: true)
|
|
At column break.
|
|
])
|