Theses, Books, Title pages ⇒ Remove capital letters in bibliography header
-
- Posts: 3
- Joined: Tue Jun 11, 2019 6:23 pm
Remove capital letters in bibliography header
I have the chapter number and title in the header of each page, which looks like this “1 Introduction”.
This works perfectly fine for all chapters of the main body and even the appendix. However, in the bibliography the header is suddenly written in capital letters as follows: “BIBLIOGRAPHY”, even though I would like to have it written in line with all other chapters to state “Bibliography”.
Any help to fix this (rather random) problem would be highly appreciated! Thank you very much in advance.
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
Remove capital letters in bibliography header
What package you are using for headers would be helpful as well.
-
- Posts: 3
- Joined: Tue Jun 11, 2019 6:23 pm
Remove capital letters in bibliography header
Those are my specifications:
(-) documentclass: MastersDoctoralThesis
(-) Bibliography made with Bibtex
(-) package for headers: scrlayer-scrpage (I believe, I just got this info from the .cls file of the thesis and I have not added any additional header packages)
Hope this helps to narrow down the issue and please let me know if you require further information.
Thanks!
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
Remove capital letters in bibliography header
\setchapterpagestyle{thesis}
to see the header on chapter starting pages.-
- Posts: 3
- Joined: Tue Jun 11, 2019 6:23 pm
Remove capital letters in bibliography header
%----------------------------------------------------------------------------------------
% HEADERS AND FOOTERS
%----------------------------------------------------------------------------------------
\RequirePackage[markcase=used]{scrlayer-scrpage}
\providepairofpagestyles{thesisSimple}{%
\clearpairofpagestyles%
\automark[chapter]{chapter}
\renewcommand*\chaptermarkformat{\thechapter\enskip}
\ihead{\headmark}% Inner header
\cfoot[\pagemark]{\pagemark}% Center footer
}
\ifoot{}% Inner footer
\ofoot{}% Outer footer
\ohead[\pagemark]{\pagemark}% Outer header
\pagestyle{thesisSimple}
\providepairofpagestyles[thesisSimple]{thesis}{%
\automark*[section]{}%
}
\providepairofpagestyles[thesisSimple]{review}{%
\ofoot[\shorttitle/\authorname]{\shorttitle/\authorname}
\ifoot[\today]{\today}
}
\pagestyle{thesis}
\ifbool{headsepline}{\KOMAoption{headsepline}{true}}{}
\PreventPackageFromLoading[\ClassError{\classname}{Package `fancyhdr' is
incompatible\MessageBreak with this class}{The pagesyles are defined
using package `scrlayer-scrpage', please consult the\MessageBreak
KOMA-script documentation for details.}]{fancyhdr}
\newcommand{\blank@p@gestyle}{empty}
\newcommand{\chapter@p@gestyle}{plain}
\NewDocumentCommand{\blankpagestyle}{ m }{%
\ClassWarning{\classname}{\string\blankpagestyle\space is
obsolete,\MessageBreak use \string\setblankpagestyle \space instead}\renewcommand{\blank@p@gestyle}{}{#1}
}
\NewDocumentCommand{\setblankpagestyle}{ m }{\renewcommand{\blank@p@gestyle}{#1}}
\NewDocumentCommand{\setchapterpagestyle}{ m }{\renewcommand{\chapter@p@gestyle}{#1}}
\DeclareDocumentCommand\cleardoublepage{}{\clearpage\if@twoside \ifodd\c@page\else
\hbox{}
\thispagestyle{\blank@p@gestyle}
\newpage
\if@twocolumn\hbox{}\newpage\fi\fi\fi%
}
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
Remove capital letters in bibliography header
Please also have a look at the mdt Quick guide.
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm