#How to spread content to cells in table/grid?
13 messages · Page 1 of 1 (latest)
An error occurred:
Error: cannot spread content
╭─[/main.typ:9:6]
│
9 │ [1], ..([ ]*4)
───╯
How to spread content to cells in table/grid?
?r #table(columns:5, [1], ([ ]*4).flatten(), [2], )
An error occurred:
Error: type content has no method `flatten`
╭─[/main.typ:9:14]
│
9 │ [1], ([ ]*4).flatten(),
───╯
?r
#table(columns:5,
[1], ..([ ],)*4,
[2],
)