GNOME Bugzilla – Bug 766787
HTML Tables with 10+ columns are broken for LaTeX based output
Last modified: 2016-09-05 13:45:30 UTC
If you generate PDF with LaTeX output and use HTML to describe tables (because you need e.g. colspan), the generated LaTeX code using tabu is corrupted. This is due to the fact, that you need to embrace counts with more than two digits with {}. Simply adding this curly braces to the tex output perfectly works. Does not work (original generated TeX): \begin{longtabu} spread 0pt [c]{*17{|X[-1]}|} Does work (manually fixed version): \begin{longtabu} spread 0pt [c]{*{17}{|X[-1]}|} This is especially frustrating, because you need to use HTML tables if you want to use colspan, and colspan is a good reason to require more than 9 culumns...
I've just pushed a proposed patch to github (pull request 481)
Thanks, I've merged the pull request
This bug was previously marked ASSIGNED, which means it should be fixed in doxygen version 1.8.12. Please verify if this is indeed the case. Reopen the bug if you think it is not fixed and please include any additional information that you think can be relevant (preferably in the form of a self-contained example).