[Tex/LaTex] Center the Bibliography heading/title using biblatex

biblatex

How can I get the title 'Bibliography' to be centered on the page using biblatex.

I'm using the report class. And I'm required to only have bibliography centered, not other sections.

I've tried a few things, all to no avail:

   \printbibliography[tile={\centering Title}]

or

\addto\captionsenglish{
   \renewcommand{\bibname}{\centering Title}
}

I should note that last one I've used before to center Table of Contents and other sections, but doesn't work here for bibliography.

I've tried a bunch of other things, none work.

Is there a way to center only the bibliography heading?

Best Answer

One possibility is to use \defbibheading:

\documentclass{report}

\usepackage{biblatex}

\addbibresource{biblatex-examples.bib}

\defbibheading{bibliography}[\bibname]{%
  \chapter*{\centering #1}%
  \markboth{#1}{#1}}

\begin{document}

\chapter{A chapter}

\nocite{*}

\printbibliography

\end{document}

enter image description here

Related Question