summaryrefslogtreecommitdiffstats
path: root/src/latexdocvisitor.cpp
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2019-02-10 13:23:48 (GMT)
committeralbert-github <albert.tests@gmail.com>2019-02-10 13:23:48 (GMT)
commit647e2ba0f6a927f22340821fbab7b92058c3ce4f (patch)
tree8490382c341b63acb71aa148b25833c0dda23713 /src/latexdocvisitor.cpp
parentd99060e4e72fc3e73b8395cb037a0ed17c209d61 (diff)
downloadDoxygen-647e2ba0f6a927f22340821fbab7b92058c3ce4f.zip
Doxygen-647e2ba0f6a927f22340821fbab7b92058c3ce4f.tar.gz
Doxygen-647e2ba0f6a927f22340821fbab7b92058c3ce4f.tar.bz2
Section title runs into margin
In the PDF version of the doxygen manual we see that for the `\image` command the chapter title the text runs into the margin (due to an unbreakable part). With this fix the problem is solved. (see also: https://tex.stackexchange.com/questions/474055/section-title-running-into-margin and , for the ifstar part, https://tex.stackexchange.com/questions/376375/using-ifstar-to-define-a-star-variant)
Diffstat (limited to 'src/latexdocvisitor.cpp')
-rw-r--r--src/latexdocvisitor.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/latexdocvisitor.cpp b/src/latexdocvisitor.cpp
index 463eedf..dd2da64 100644
--- a/src/latexdocvisitor.cpp
+++ b/src/latexdocvisitor.cpp
@@ -38,7 +38,7 @@
const int maxLevels=5;
static const char *secLabels[maxLevels] =
- { "section","subsection","subsubsection","paragraph","subparagraph" };
+ { "doxysection","doxysubsection","doxysubsubsection","doxyparagraph","doxysubparagraph" };
static const char *getSectionName(int level)
{