typst/tests/suite/layout/grid/subfooters.typ
2025-06-28 22:39:35 -03:00

42 lines
804 B
Typst

--- grid-subfooters-demo ---
#set page(height: 15.2em)
#table(
columns: 2,
align: center,
table.header(
table.cell(colspan: 2)[*Regional User Data*],
),
table.header(
level: 2,
table.cell(colspan: 2)[*Germany*],
[*Username*], [*Joined*]
),
[john123], [2024],
[rob8], [2025],
[joe1], [2025],
[joe2], [2025],
[martha], [2025],
[pear], [2025],
table.footer(
level: 2,
[*Mode*], [2025],
table.cell(colspan: 2)[*Totals*],
),
table.header(
level: 2,
table.cell(colspan: 2)[*United States*],
[*Username*], [*Joined*]
),
[cool4], [2023],
[roger], [2023],
[bigfan55], [2022],
table.footer(
level: 2,
[*Mode*], [2023],
table.cell(colspan: 2)[*Totals*],
),
table.footer(
table.cell(colspan: 2)[*Data Inc.*],
),
)