typst/tests/typ/layout/grid-footers-5.typ
PgBiel 639a8d0dc0
Repeatable Table Footers [More Flexible Tables Pt.6a] (#3577)
Co-authored-by: Laurenz <laurmaedje@gmail.com>
2024-03-09 15:48:48 +00:00

29 lines
355 B
Typst

// General footer-only tests
#set page(height: 9em)
#table(
columns: 2,
[a], [],
[b], [],
[c], [],
[d], [],
[e], [],
table.footer(
[*Ok*], table.cell(rowspan: 2)[test],
[*Thanks*]
)
)
---
#set page(height: 5em)
#table(
table.footer[a][b][c]
)
---
#table(table.footer[a][b][c])
#table(
gutter: 3pt,
table.footer[a][b][c]
)