ich wollte hinter den Namen der Autoren gerne ein Doppeltpunkt haben. Also zwischen den letzten Namen des Autoren und des Titels
Sollte so aussehen
Petersen, A. and Follooo, B.: The title of the work....
Wie bekomme ich das hin, ohne ein in den Still rein gehen zu müssen?
\documentclass[12pt,oneside,a4paper]{scrreprt} \usepackage[utf8]{inputenc} \usepackage{filecontents} \usepackage[T1]{fontenc} \usepackage[backend=biber, style=alphabetic, firstinits=true, maxbibnames=99]{biblatex} \DeclareLabelalphaTemplate{% \labelelement{% \field{label} } } \begin{filecontents}{sandbox1.bib} @article{Adam93, label = {Adam93}, author = {Petersen, Arnold and Follooo, Bertram}, title = {The title of the work}, journal = {The name of the journal}, year = 1993, number = 2, pages = {201-213}, month = 7, note = {An optional note}, volume = 4 } \end{filecontents} \addbibresource{sandbox1.bib} \begin{document} Mein Zitat \cite{Adam93}. \addcontentsline{toc}{chapter}{Bibliography} \printbibliography \end{document}