After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 766787 - HTML Tables with 10+ columns are broken for LaTeX based output
HTML Tables with 10+ columns are broken for LaTeX based output
Status: RESOLVED FIXED
Product: doxygen
Classification: Other
Component: general
1.8.11
Other Linux
: Normal normal
: ---
Assigned To: Dimitri van Heesch
Dimitri van Heesch
Depends on:
Blocks:
 
 
Reported: 2016-05-23 11:11 UTC by Daniel G.
Modified: 2016-09-05 13:45 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Daniel G. 2016-05-23 11:11:53 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...
Comment 1 albert 2016-05-23 17:47:30 UTC
I've just pushed a proposed patch to github (pull request 481)
Comment 2 Dimitri van Heesch 2016-05-23 19:08:38 UTC
Thanks, I've merged the pull request
Comment 3 Dimitri van Heesch 2016-09-05 13:45:30 UTC
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).