summaryrefslogtreecommitdiffstats
path: root/src/latexgen.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/latexgen.cpp')
-rw-r--r--src/latexgen.cpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/latexgen.cpp b/src/latexgen.cpp
index 49f06fe..e6a6346 100644
--- a/src/latexgen.cpp
+++ b/src/latexgen.cpp
@@ -525,10 +525,15 @@ static void writeDefaultFooter(FTextStream &t)
Doxygen::citeDict->writeLatexBibliography(t);
// Index
+ QCString unit;
+ if (Config_getBool("COMPACT_LATEX"))
+ unit = "section";
+ else
+ unit = "chapter";
t << "% Index\n"
"\\newpage\n"
"\\phantomsection\n"
- "\\addcontentsline{toc}{part}{" << theTranslator->trRTFGeneralIndex() << "}\n"
+ "\\addcontentsline{toc}{" << unit << "}{" << theTranslator->trRTFGeneralIndex() << "}\n"
"\\printindex\n"
"\n"
"\\end{document}\n";