[Tex/LaTex] Rename bibliography

bibliographies

I want to change the bibliography title 'Literatur' in 'Literaturverzeichnis', but it doesn't work with \addto\captionsngerman{\renewcommand{\refname}{Literaturverzeichnis}}.

\documentclass[12pt,twoside,parskip=half-,numbers=noenddot,BCOR=8mm,headheight=29pt]{scrartcl}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[ngerman]{babel}
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@article{greenwade93,
    author  = "George D. Greenwade",
    title   = "The {C}omprehensive {T}ex {A}rchive {N}etwork",
    year    = "1993",
    journal = "TUGBoat",
    volume  = "14",
    number  = "3",
    pages   = "342--351"
}
\end{filecontents}
\usepackage[backend=biber,style=alphabetic,maxnames=10]{biblatex}
\addbibresource{\jobname.bib}
\begin{document}
\cite{greenwade93}
\printbibliography[heading=bibintoc]
\end{document}

Best Answer

If you use

\renewcaptionname{ngerman}{\refname}{Literaturverzeichnis}

cf. How to change the name of document elements like "Figure", "Contents", "Bibliography", "Appendix", etc.?, and add it after \usepackage[..]{biblatex}, it seems to work.

You could also do

\printbibliography[heading=bibintoc,title=Literaturverzeichnis]

Complete code:

\documentclass[12pt,twoside,parskip=half-,numbers=noenddot,BCOR=8mm,headheight=29pt]{scrartcl}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[ngerman]{babel}
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@article{greenwade93,
    author  = "George D. Greenwade",
    title   = "The {C}omprehensive {T}ex {A}rchive {N}etwork",
    year    = "1993",
    journal = "TUGBoat",
    volume  = "14",
    number  = "3",
    pages   = "342--351"
}
\end{filecontents}
\usepackage[backend=biber,style=alphabetic,maxnames=10]{biblatex}
\addbibresource{\jobname.bib}
\renewcaptionname{ngerman}{\refname}{Literaturverzeichnis} 
\begin{document}
\cite{greenwade93}
\printbibliography[heading=bibintoc]

%alternative
%\printbibliography[heading=bibintoc,title=Literaturverzeichnis]
\end{document}

enter image description here

Related Question