New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
border-collapse is off #260
Comments
Right. Actually your documents made me realise that there is something out of order. The only solution currently is not to use |
Yes, that works for me. |
One more thing related to rowspan. I am getting this error where I have rowspan and used the model of assembling tables as shown in the speedata manual.
I think when you add new rows one by one, it cannot easily know how to rowspan. |
@Demosteneus Do you have an example for that? |
Attached you can see an example. The data.xml has 6 tables (copy-pasted, just for content), only table 4 has rowspan. So, at the moment it prints only first two table then it crashes. |
@Demosteneus You have a logic error in your code. The table is typeset in one of the iterations with one row which has rowspan > 1 and therefore fails. (moretrs>0 in /text/table[4]/tgroup[1]/tbody[1]/tr[1]/td[1]). Next version has a better error message. You must always ensure that number of rowspan does not exceed the number of rows in the table. .. so the answer to your question is: yes, you need to take extra steps if you add rowspan and build the table line by line. |
layout:
The text was updated successfully, but these errors were encountered: