diff options
author | Dimitri van Heesch <doxygen@gmail.com> | 2020-12-22 18:44:11 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-22 18:44:11 (GMT) |
commit | f7c14f5c5743a7133a53479cd1f621b16860160c (patch) | |
tree | bf60b63ee9029f31c11a087058bdb3bc4413fc4b | |
parent | d590014ca419847f932fc7074794e0a1f1e18110 (diff) | |
parent | 7a3d77897eafcd213197c9229c68429bb4396bbb (diff) | |
download | Doxygen-f7c14f5c5743a7133a53479cd1f621b16860160c.zip Doxygen-f7c14f5c5743a7133a53479cd1f621b16860160c.tar.gz Doxygen-f7c14f5c5743a7133a53479cd1f621b16860160c.tar.bz2 |
Merge pull request #8270 from albert-github/feature/bug_latex_toprule
Doxygen manual top rule is in uppercase.
-rw-r--r-- | doc/manual.sty | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/manual.sty b/doc/manual.sty index fdbc982..12f3911 100644 --- a/doc/manual.sty +++ b/doc/manual.sty @@ -11,12 +11,6 @@ \newcommand{\clearemptydoublepage}{% \newpage{\pagestyle{empty}\cleardoublepage}% } -\renewcommand{\chaptermark}[1]{% - \markboth{#1}{}% -} -\renewcommand{\sectionmark}[1]{% - \markright{\thesection\ #1}% -} % Used by @image % (only if inline is specified) \newlength{\DoxyInlineHeightChar} @@ -44,6 +38,12 @@ \renewcommand{\headrulewidth}{0pt}} % \pagestyle{fancyplain} +\renewcommand{\chaptermark}[1]{% + \markboth{#1}{}% +} +\renewcommand{\sectionmark}[1]{% + \markright{\thesection\ #1}% +} % \usepackage{xpatch} \xpatchcmd{\part}{plain}{empty}{}{} |