bibliography section headers not spacedlowsmallcaps with biblatex

Issue #136 resolved
Ivo Pletikosić created an issue

With biblatex now in charge, bibliography section headers have lost their spacedlowsmallcaps formatting because biblatex redefines the chapter heading and headlines to one of its preset formats. Thus instead of

%*************************
% Bibliography 
%*************************
% work-around to have small caps also here in the headline
\manualmark
\markboth{\spacedlowsmallcaps{\bibname}}{\spacedlowsmallcaps{\bibname}}
\phantomsection

%to have the bib a bit away from the rest in the toc
\addtocontents{toc}{\protect\vspace{\beforebibskip}}

\addcontentsline{toc}{chapter}{\tocEntry{\bibname}}

I propose to have

\defbibheading{bibintoc}[\bibname]{%
  \phantomsection
  \manualmark
  \markboth{\spacedlowsmallcaps{#1}}{\spacedlowsmallcaps{#1}}%
  \addtocontents{toc}{\protect\vspace{\beforebibskip}}%
  \addcontentsline{toc}{chapter}{\tocEntry{#1}}%
  \chapter*{#1}%
}

(as per egreg's answer at https://tex.stackexchange.com/questions/188126/wrong-header-in-bibliography-classicthesis)

And call \printbibliography like this:

\printbibliography[heading=bibintoc]

Comments (3)

  1. Log in to comment