Currently my bibliography says "Literatur" (german). But I want something completely different there. How can I achieve that?
Asked
Active
Viewed 1.2k times
11
1 Answers
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
authordateas your bibliography style, the\addto\captions<language>{\renewcommand{\refname}{Whatever}}commands must be placed after\usepackage{authordate1-4}. This is becauseauthordatecontains 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
babel. If that solves your problem, we can close this question as a duplicate. – Alan Munn Nov 28 '11 at 13:20