Hello,
I’m trying to have 3 cells in a table to span 2 rows, I’ve checked on the app and in the documentation, but it seems that it does not work for me as it is here:
#figure(
table(
columns: 3,
align: horizon,
table.cell(colspan: 3, align: center, [`empty`]),
[`charybde`], [`1U`], [`Dell R350`],
table.cell(colspan: 3, align: center, [`empty`]),
[`scylla`], [`1U`], [`Dell R350`],
table.cell(colspan: 3, align: center, [`empty`]),
[`wombat`], [`1U`], [`QNAP`],
table.cell(colspan: 3, align: center, [`empty`]),
[`capybara`], [`1U`], [`QNAP`],
table.cell(colspan: 3, align: center, [`empty`]),
table.cell(rowspan: 2, [`quokka`]), table.cell(rowspan: 2, `2U`), table.cell( rowspan: 2, `Dell 7960`),
//
table.cell(colspan: 3, align: center, [`empty`]),
),
caption: [Rack placement],
) <rack-assignments>
the line with quokka does not span two rows. I tried setting the rows property to 12 or 13, to no avail.
I’m probably missing something basic, can anyone help?
Thanks.