Woran liegt das?
Für mich ist der authortitle-dw Stil sehr wichtig, weil ich im Literaturverzeichnis die Namen mit Komma und in der Fußnote mit Slash trennen muss.
Besten Dank schon mal im Voraus!
Chris
\documentclass[12pt]{scrartcl}
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@BOOK{book,
author = {Buchautor, Der},
title = {Irgendein Buch},
location = {Buch am Wald},
date = {2000}}
@BOOK{book2,
author = {Hrubesch, Horst},
title = {Ein anderes Buch},
location = {Buch am Wald},
date = {2000}}
\end{filecontents}
\usepackage[ngerman]{babel}
\usepackage[T1]{fontenc}
\usepackage[latin1]{inputenc}
\usepackage{csquotes}
\usepackage[style=authortitle-dw]{biblatex}
\bibliography{\jobname}
\newbibmacro*{cite}{%
\global\togglefalse{cbx:loccit}%
\iffieldundef{shorthand}
{\ifthenelse{\ifciteibid\AND\NOT\iffirstonpage}
{\usebibmacro{cite:ibid}}
{\ifnameundef{labelname}
{}
{\printnames{labelname}}}
\setunit{\nametitledelim}%
\usebibmacro{cite:title}%
\iffieldundef{year}
{}
{\setunit{\nameyeardelim}%
\printfield{year}}%
\iflistundef{location}
{}
{\setunit{\addcomma\space}%
\printlist{location}}}%
{\usebibmacro{cite:shorthand}}}
%Autoren in Kapitälchen
\renewcommand*{\mkbibnamelast}[1]{\textsc{#1}}
%Reihenfolge der Autorennamen
\DeclareNameFormat{default}{% Vollzitate
\usebibmacro{name:last-first}{#1}{#4}{#6}{#8}%
\usebibmacro{name:andothers}}
\DeclareNameFormat{labelname}{% alle anderen Zitate
\usebibmacro{name:last-first}{#1}{#4}{#6}{#8}%
\usebibmacro{name:andothers}}
%Semikolon zwischen mehreren Autoren
\renewcommand*{\multinamedelim}{\addsemicolon\space}
\renewcommand*{\finalnamedelim}{\addsemicolon\space}
\renewcommand*{\multilistdelim}{\addsemicolon\space}
\renewcommand*{\finallistdelim}{\addsemicolon\space}
%Doppelpunkt nach Autoren
\renewcommand*{\nametitledelim}{\addcolon\space}
\begin{document}
Test(\footfullcite[34]{book})
Test2(\footfullcite[38]{book2})
\printbibliography
\end{document}
