[Tex/LaTex] How to set BibTeX bibliography title

bibliographiesnaming

Currently my bibliography says "Literatur" (german). But I want something completely different there. How can I achieve that?

Best Answer

If you're using, say,

\usepackage[ngerman]{babel}

put the following in your preamble

\addto\captionsngerman{\renewcommand{\refname}{Whatever}}

if you're using the article class, or

\addto\captionsngerman{\renewcommand{\bibname}{Whatever}}

for the book or report classes. KoMa classes use the same commands: \refname for scrartcl and \bibname for scrreprt and scrbook.

Related Question