Closed wlupton closed 10 months ago
The documentation says to use colspanx(2)(rowspanx(2)[d]) to set colspan and rowspan at the same time.
colspanx(2)(rowspanx(2)[d])
Is this a typo? The following gives a Missing argument: content error.
Missing argument: content
#tablex( columns: 3, [a], [b], [c], colspanx(2)(rowspanx(2)[d]) )
Should it say colspanx(2, rowspanx(2)[d])? This works.
colspanx(2, rowspanx(2)[d])
#tablex( columns: 3, [a], [b], [c], colspanx(2, rowspanx(2)[d]) )
Yep, it was a typo. Will now be fixed in the next release's README. Thanks!
The documentation says to use
colspanx(2)(rowspanx(2)[d])
to set colspan and rowspan at the same time.Is this a typo? The following gives a
Missing argument: content
error.Should it say
colspanx(2, rowspanx(2)[d])
? This works.