Seite 1 von 1

Doppeltpunk hinter Autorenname und Vor Titel des Buches

Verfasst: Sa 2. Jul 2016, 09:16
von TaiBone
Hey,

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}

Verfasst: Sa 2. Jul 2016, 11:26
von TaiBone
ab es mit:
\renewcommand*{\labelnamepunct}{\addcolon\space}
gelöst.