mirror of
https://github.com/typst/typst
synced 2025-05-14 04:56:26 +08:00
19 lines
301 B
Typst
19 lines
301 B
Typst
// Test tables.
|
|
|
|
---
|
|
#set page(height: 70pt)
|
|
#set table(primary: rgb("aaa"), secondary: none)
|
|
|
|
#table(
|
|
columns: (1fr,) * 3,
|
|
stroke: 2pt + rgb("333"),
|
|
[A], [B], [C], [], [], [D \ E \ F \ \ \ G], [H],
|
|
)
|
|
|
|
---
|
|
#table(columns: 3, stroke: none, fill: green, [A], [B], [C])
|
|
|
|
---
|
|
// Ref: false
|
|
#table()
|