I want to replace all name delimiters by "--", so it shall be "Author1 -- Author2 -- Author3" instead of "Author1, Author2 and Author3".
Currently I am using this code:
\usepackage[citestyle=authoryear-comp,bibstyle=authortitle,sorting=nyt,dashed=false,%
maxcitenames=2]{biblatex}
\newcounter{mymaxcitenames}
\AtBeginDocument{%
\setcounter{mymaxcitenames}{\value{maxnames}}%
}
\renewbibmacro*{begentry}{%
\printtext[brackets]{%
\begingroup
\defcounter{maxnames}{\value{mymaxcitenames}}%
\printnames{labelname}%
\setunit{\nameyeardelim}%
\usebibmacro{cite:labelyear+extrayear}%
\endgroup
}%
\quad% or \addspace
}
I hope someone can help me - I am trying to get a bibliography which fits the rules of Deutsches Archäologisches Institut (DAI).

\renewcommand*{\multinamedelim}{~--\space} \renewcommand*{\finalnamedelim}{~--\space}– Marco Daniel May 6 '12 at 15:13