diff options
| author | Laurenz <laurmaedje@gmail.com> | 2022-04-08 17:08:30 +0200 |
|---|---|---|
| committer | Laurenz <laurmaedje@gmail.com> | 2022-04-09 12:02:35 +0200 |
| commit | 29eb13ca6214461a4b0deb63d589cd39ad6d41c2 (patch) | |
| tree | c86797d440cfcc801c87a3c64f479e39f2c068b1 /tests/typ/structure/table.typ | |
| parent | 712c00ecb72b67da2c0788e5d3eb4dcc6366b2a7 (diff) | |
Sum color and length into stroke
Diffstat (limited to 'tests/typ/structure/table.typ')
| -rw-r--r-- | tests/typ/structure/table.typ | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/tests/typ/structure/table.typ b/tests/typ/structure/table.typ index 0372951c..57b71ede 100644 --- a/tests/typ/structure/table.typ +++ b/tests/typ/structure/table.typ @@ -1,13 +1,18 @@ +// Test tables. + +--- #set page(height: 70pt) #set table(primary: rgb("aaa"), secondary: none) #table( columns: (1fr,) * 3, - stroke: rgb("333"), - thickness: 2pt, + 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() |
