mirror of
https://github.com/typst/typst
synced 2025-05-18 02:55:28 +08:00
18 lines
212 B
Typst
18 lines
212 B
Typst
// Ensure gutter rows at the top or bottom of a region are skipped.
|
|
|
|
---
|
|
#set page(height: 10em)
|
|
|
|
#table(
|
|
row-gutter: 1.5em,
|
|
inset: 0pt,
|
|
rows: (1fr, auto),
|
|
[a],
|
|
[],
|
|
[],
|
|
[f],
|
|
[e\ e],
|
|
[],
|
|
[a]
|
|
)
|