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 710998 - latex_count=5 is not enough
latex_count=5 is not enough
Status: RESOLVED FIXED
Product: doxygen
Classification: Other
Component: general
1.8.4
Other Linux
: Normal normal
: ---
Assigned To: Dimitri van Heesch
Dimitri van Heesch
Depends on:
Blocks:
 
 
Reported: 2013-10-28 10:07 UTC by bagnara
Modified: 2013-12-24 18:59 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description bagnara 2013-10-28 10:07:11 UTC
I have documentation that requires at least 6.  I have patched the sources as follows:

Index: src/latexgen.cpp
===================================================================
--- src/latexgen.cpp    (revision 850)
+++ src/latexgen.cpp    (working copy)
@@ -126,7 +126,7 @@
     }
     t << "\techo \"Rerunning latex....\"" << endl
       << "\t" << latex_command << " refman.tex" << endl
-      << "\tlatex_count=5 ; \\" << endl
+      << "\tlatex_count=8 ; \\" << endl
       << "\twhile egrep -s 'Rerun (LaTeX|to get cross-references right)' refman.log && [ $$latex_count -gt 0 ] ;\\" << endl
       << "\t    do \\" << endl
       << "\t      echo \"Rerunning latex....\" ;\\" << endl
@@ -154,7 +154,7 @@
       t << "\tpdflatex refman" << endl;
     }
     t << "\tpdflatex refman" << endl
-      << "\tlatex_count=5 ; \\" << endl
+      << "\tlatex_count=8 ; \\" << endl
       << "\twhile egrep -s 'Rerun (LaTeX|to get cross-references right)' refman.log && [ $$latex_count -gt 0 ] ;\\" << endl
       << "\t    do \\" << endl
       << "\t      echo \"Rerunning latex....\" ;\\" << endl
Comment 1 Dimitri van Heesch 2013-11-11 19:44:05 UTC
Thanks, I'll include the patch in the next GIT update.
Comment 2 Dimitri van Heesch 2013-12-24 18:59:29 UTC
This bug was previously marked ASSIGNED, which means it should be fixed in
doxygen version 1.8.6. 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 (preferrably in the form of a self-contained example).