diff options
author | Dimitri van Heesch <doxygen@gmail.com> | 2019-08-04 11:51:30 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-04 11:51:30 (GMT) |
commit | 300440178962a0c4b9c5a52b449a68777da67c7b (patch) | |
tree | 8a5d6fc26fda79799b4e062413b926a9defce374 /doc | |
parent | f6b570dd11534ee131c8c3cc0f1a4c732c00ec96 (diff) | |
parent | 3eea436bec471fb0b4161342b4d7d804d7173ca4 (diff) | |
download | Doxygen-300440178962a0c4b9c5a52b449a68777da67c7b.zip Doxygen-300440178962a0c4b9c5a52b449a68777da67c7b.tar.gz Doxygen-300440178962a0c4b9c5a52b449a68777da67c7b.tar.bz2 |
Merge pull request #7160 from albert-github/feature/bug_latex_secref
Incorrect paragraph numbers in secref list.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/doxygen_manual.tex | 27 |
1 files changed, 23 insertions, 4 deletions
diff --git a/doc/doxygen_manual.tex b/doc/doxygen_manual.tex index 078bdea..8ff3c66 100644 --- a/doc/doxygen_manual.tex +++ b/doc/doxygen_manual.tex @@ -66,12 +66,31 @@ \usepackage{doxygen} \usepackage{manual} %% +% unfortunately constructs like: +% \renewcommand{\doxysection}[1]{\doxysubsection{##1}} +% using values from book.cls (see also doxygen.sty) and redefining sections to correct level. \makeatletter \newenvironment{DoxygenSubAppendix}{% - \renewcommand{\doxysection}{\@ifstar{\doxysubsection@star}{\doxysubsection@nostar}}% - \renewcommand{\doxysubsection}{\@ifstar{\doxysubsubsection@star}{\doxysubsubsection@nostar}} - \renewcommand{\doxysubsubsection}{\@ifstar{\doxyparagraph@star}{\doxyparagraph@nostar}} - \renewcommand{\doxyparagraph}{\@ifstar{\doxysubparagraph@star}{\doxysubparagraph@nostar}} +\renewcommand\doxysection{\@startsection{subsection}{2}{\z@}% + {-3.25ex\@plus -1ex \@minus -.2ex}% + {1.5ex \@plus .2ex}% + {\raggedright\normalfont\large\bfseries}} +\renewcommand\doxysubsection{\@startsection{subsubsection}{3}{\z@}% + {-3.25ex\@plus -1ex \@minus -.2ex}% + {1.5ex \@plus .2ex}% + {\raggedright\normalfont\normalsize\bfseries}} +\renewcommand\doxysubsubsection{\@startsection{paragraph}{4}{\z@}% + {3.25ex \@plus1ex \@minus.2ex}% + {-1em}% + {\raggedright\normalfont\normalsize\bfseries}} +\renewcommand\doxyparagraph{\@startsection{subparagraph}{5}{\parindent}% + {3.25ex \@plus1ex \@minus .2ex}% + {-1em}% + {\raggedright\normalfont\normalsize\bfseries}} +%%\renewcommand{\doxysection}[1]{\doxysubsection{##1}} +%%\renewcommand{\doxysubsection}[1]{\doxysubsubsection{##1}} +%%\renewcommand{\doxysubsubsection}[1]{\doxyparagraph{##1}} +%%\renewcommand{\doxyparagraph}[1]{\doxysubparagraph{##1}} }{} \makeatother %% |