typst/tests/typ/layout/grid-rowspan-split-1.typ

90 lines
1.6 KiB
Typst

// Rowspan split tests
---
#set page(height: 10em)
#table(
columns: 2,
rows: (auto, auto, 3em),
fill: red,
[a], table.cell(rowspan: 3, block(width: 50%, height: 10em, fill: orange) + place(bottom)[*ZD*]),
[e],
[f]
)
---
#set page(height: 10em)
#table(
columns: 2,
rows: (auto, auto, 3em),
row-gutter: 1em,
fill: red,
[a], table.cell(rowspan: 3, block(width: 50%, height: 10em, fill: orange) + place(bottom)[*ZD*]),
[e],
[f]
)
---
#set page(height: 5em)
#table(
columns: 2,
fill: red,
inset: 0pt,
table.cell(fill: orange, rowspan: 10, place(bottom)[*Z*] + [x\ ] * 10 + place(bottom)[*ZZ*]),
..([y],) * 10,
[a], [b],
)
---
#set page(height: 5em)
#table(
columns: 2,
fill: red,
inset: 0pt,
gutter: 2pt,
table.cell(fill: orange, rowspan: 10, place(bottom)[*Z*] + [x\ ] * 10 + place(bottom)[*ZZ*]),
..([y],) * 10,
[a], [b],
)
---
#set page(height: 5em)
#table(
columns: 2,
fill: red,
inset: 0pt,
table.cell(fill: orange, rowspan: 10, breakable: false, place(bottom)[*Z*] + [x\ ] * 10 + place(bottom)[*ZZ*]),
..([y],) * 10,
[a], [b],
)
---
#set page(height: 5em)
#table(
columns: 2,
fill: red,
inset: 0pt,
gutter: 2pt,
table.cell(fill: orange, rowspan: 10, breakable: false, place(bottom)[*Z*] + [x\ ] * 10 + place(bottom)[*ZZ*]),
..([y],) * 10,
[a], [b],
)
---
#set page(height: 5em)
#grid(
columns: 2,
stroke: red,
inset: 5pt,
grid.cell(rowspan: 5)[a\ b\ c\ d\ e]
)
---
#set page(height: 5em)
#table(
columns: 2,
gutter: 3pt,
stroke: red,
inset: 5pt,
table.cell(rowspan: 5)[a\ b\ c\ d\ e]
)