I’m experiencing a problem with the ‘table’ code.
My input looks like this:
#table(
columns: 4,
stroke: none,
table.header[X], […], [Y],[ ],
[ ], [W], […], [Z]
)
The preview looks like this:
X
… Y
W … Z
But what it should look like is this:
X … Y
W … Z
And yet another table comes out perfectly:
Input:
#table(
columns: 5,
stroke: none,
table.header[A][bigger][house][than][mine],
[\[D], […], [N\]], [ ], [ ],
[ ], [\[A], [N\]], [ ],[ ],
[ ], [\[A], […], [P],[Prn\]]
)
Output:
A bigger house than mine
[D … N]
[A N]
[A … P Prn]
What is wrong with the first table code above?