11

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

lockstep
  • 250,273
Arne
  • 1,243

1 Answers1

15

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.

egreg
  • 1,121,712
  • Please note that if you are using authordate as your bibliography style, the \addto\captions<language>{\renewcommand{\refname}{Whatever}} commands must be placed after \usepackage{authordate1-4}. This is because authordate contains a hardcoded redefinition of bibliography title as \def\bibtitle{References}. Just spent half an hour arguing with my editor. – JoErNanO Mar 20 '15 at 14:27