I have some problems with the bibliography. For nearly all changes I wanted I found solutions, but not for these two:
1: I would like to change the separator after the first name: "Panzer, Paul; Mustermann, Max" instead of "Panzer, Paul, Mustermann, Max".
2: How can I change the "&" to a ";" (but just in the bibliography and not in citations!)
Thank you very much :-)
This is the code I use:
\documentclass[a4paper,11pt,DIV=calc, titlepage]{scrartcl}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[ngerman]{babel}
\usepackage{filecontents}
\usepackage[babel, german=quotes]{csquotes}
\usepackage[style=authoryear-ibid,natbib=true, maxbibnames=9,maxcitenames=2,uniquelist=false, backend=biber]{biblatex}
\renewcommand*{\mkbibnamelast}[1]{\textsc{#1}}
\DefineBibliographyStrings{ngerman}{
andothers = {{et\,al\adddot}},
}
\renewcommand{\finalnamedelim}[0]{\addspace\&\addspace}
\DeclareNameAlias{sortname}{last-first}
\DeclareNameAlias{default}{last-first}
\DeclareFieldFormat[article,inbook,incollection,inproceedings,patent,thesis,unpublished]{citetitle}{#1} %Anführungszeichen um Titel entfernen
\DeclareFieldFormat[article,inbook,incollection,inproceedings,patent,thesis,unpublished]{title}{#1}
\addbibresource{literature.bib}
\begin{filecontents}{literature.bib}
@Article{Pa2015,
Title = {The Test},
Author = {Paul Panzer and Max Mustermann and Bananen Baum},
Journaltitle = {bla bla},
Year = {2015},
Owner = {Me},
Timestamp = {2014.08.14}
}
\end{filecontents}
\begin{document}
test \parencite{Pa2015}\\
\printbibliography
It should look like this:\\
\textsc{Panzer}, Paul; \textsc{Mustermann}, Max; \textsc{Baum}, Bananen (2015). The test. In: \textit{bla bla.}\\
\end{document}
