diff options
| author | Laurenz <laurmaedje@gmail.com> | 2022-02-28 15:50:48 +0100 |
|---|---|---|
| committer | Laurenz <laurmaedje@gmail.com> | 2022-02-28 23:54:34 +0100 |
| commit | 3ca5b238238e1128aa7bbfbd5db9e632045d8600 (patch) | |
| tree | 2471f4b340a15695b7f4d518c0b39fabaea676c4 /tests/typ/elements/table.typ | |
| parent | b63c21c91d99a1554a019dc275f955d3e6a34271 (diff) | |
Reorganize library
Diffstat (limited to 'tests/typ/elements/table.typ')
| -rw-r--r-- | tests/typ/elements/table.typ | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/typ/elements/table.typ b/tests/typ/elements/table.typ new file mode 100644 index 00000000..0372951c --- /dev/null +++ b/tests/typ/elements/table.typ @@ -0,0 +1,13 @@ +#set page(height: 70pt) +#set table(primary: rgb("aaa"), secondary: none) + +#table( + columns: (1fr,) * 3, + stroke: rgb("333"), + thickness: 2pt, + [A], [B], [C], [], [], [D \ E \ F \ \ \ G], [H], +) + +--- +// Ref: false +#table() |
