diff options
author | albert-github <albert.tests@gmail.com> | 2019-03-28 11:34:42 (GMT) |
---|---|---|
committer | albert-github <albert.tests@gmail.com> | 2019-03-28 11:34:42 (GMT) |
commit | cc48623fba4f1574f023d91f56d136cf7d797a19 (patch) | |
tree | 3099f89f293d54b883c95b1ce934e39021915253 | |
parent | 424985d0766971c8a9b7dd386edb19bf0eed10fb (diff) | |
download | Doxygen-cc48623fba4f1574f023d91f56d136cf7d797a19.zip Doxygen-cc48623fba4f1574f023d91f56d136cf7d797a19.tar.gz Doxygen-cc48623fba4f1574f023d91f56d136cf7d797a19.tar.bz2 |
issue #6896 empty sections in latex output
In pull request #6832 a fix was made for section captions that ran into the margins. For sections that should not appear in the the TOC (i.e. `*`-ed sections) this led to showing a `*`, this has been corrected.
-rw-r--r-- | templates/latex/doxygen.sty | 21 |
1 files changed, 15 insertions, 6 deletions
diff --git a/templates/latex/doxygen.sty b/templates/latex/doxygen.sty index dacd717..bd5fdba 100644 --- a/templates/latex/doxygen.sty +++ b/templates/latex/doxygen.sty @@ -547,13 +547,22 @@ % possibility to have sections etc. be within the margins \makeatletter -\newcommand{\doxysection}[1]{\@ifstar{\begingroup\sloppy\raggedright\section*{#1}\endgroup}{\begingroup\sloppy\raggedright\section{#1}\endgroup}} -\newcommand{\doxysubsection}[1]{\@ifstar{\begingroup\sloppy\raggedright\subsection*{#1}\endgroup}{\begingroup\sloppy\raggedright\subsection{#1}\endgroup}} -\newcommand{\doxysubsubsection}[1]{\@ifstar{\begingroup\sloppy\raggedright\subsubsection*{#1}\endgroup}{\begingroup\sloppy\raggedright\subsubsection{#1}\endgroup}} -\newcommand{\doxyparagraph}[1]{@ifstar{\begingroup\sloppy\raggedright\paragraph*{#1}\endgroup}{\begingroup\sloppy\raggedright\paragraph{#1}\endgroup}} -\newcommand{\doxysubparagraph}[1]{@ifstar{\begingroup\sloppy\raggedright\subparagraph*{#1}\endgroup}{\begingroup\sloppy\raggedright\subparagraph{#1}\endgroup}} +\newcommand{\doxysection}{\@ifstar{\doxysection@star}{\doxysection@nostar}} +\newcommand{\doxysection@star}[1]{\begingroup\sloppy\raggedright\section*{#1}\endgroup} +\newcommand{\doxysection@nostar}[1]{\begingroup\sloppy\raggedright\section{#1}\endgroup} +\newcommand{\doxysubsection}{\@ifstar{\doxysubsection@star}{\doxysubsection@nostar}} +\newcommand{\doxysubsection@star}[1]{\begingroup\sloppy\raggedright\subsection*{#1}\endgroup} +\newcommand{\doxysubsection@nostar}[1]{\begingroup\sloppy\raggedright\subsection{#1}\endgroup} +\newcommand{\doxysubsubsection}{\@ifstar{\doxysubsubsection@star}{\doxysubsubsection@nostar}} +\newcommand{\doxysubsubsection@star}[1]{\begingroup\sloppy\raggedright\subsubsection*{#1}\endgroup} +\newcommand{\doxysubsubsection@nostar}[1]{\begingroup\sloppy\raggedright\subsubsection{#1}\endgroup} +\newcommand{\doxyparagraph}{\@ifstar{\doxyparagraph@star}{\doxyparagraph@nostar}} +\newcommand{\doxyparagraph@star}[1]{\begingroup\sloppy\raggedright\paragraph*{#1}\endgroup} +\newcommand{\doxyparagraph@nostar}[1]{\begingroup\sloppy\raggedright\paragraph{#1}\endgroup} +\newcommand{\doxysubparagraph}{\@ifstar{\doxysubparagraph@star}{\doxysubparagraph@nostar}} +\newcommand{\doxysubparagraph@star}[1]{\begingroup\sloppy\raggedright\subparagraph*{#1}\endgroup} +\newcommand{\doxysubparagraph@nostar}[1]{\begingroup\sloppy\raggedright\subparagraph{#1}\endgroup} \makeatother - % Define caption that is also suitable in a table \makeatletter \def\doxyfigcaption{% |