Wenn ichK2P hat geschrieben:durch die Aktivierung von maxnames wird der zitierstil beeinflusst:
Die Trennung der Authoren erfolgt nun durch ein und anstatt durch /
sowohl beim zitieren als auch im Litvz.
\usepackage[style=footnote-dw,namefont=italic,firstnamefont=italic,nopublisher=false,maxnames=2]{biblatex}\RequirePackage{filecontents}
\begin{filecontents}{\jobname.bib}
@book{KPMG,
author={Hans Maier and Horst Müller},
titel={EGAL},
year=2008}
@book{KPMGa,
author={Hans Maier and Horst Müller and Steffen Schulz},
titel={EGAL},
year=2008}
\end{filecontents}
\documentclass[a4paper,12pt,openany,oneside,pointlessnumbers]{scrreprt}
\usepackage[T1]{fontenc}
\usepackage[latin9]{inputenc}
\usepackage[ngerman]{babel}
\usepackage[a4paper]{geometry}
\usepackage{csquotes}
\usepackage[style=footnote-dw,namefont=italic,firstnamefont=italic,nopublisher=false,maxnames=2]{biblatex}
\bibliography{\jobname}
\DeclareNameFormat{default}{%
\iffirstinits
{\usebibmacro{name:last-first}{#1}{#4}{#5}{#7}}
{\usebibmacro{name:last-first}{#1}{#3}{#5}{#7}}%
\usebibmacro{name:andothers}}
\DeclareNameFormat{labelname}{%
\iffirstinits
{\usebibmacro{name:last-first}{#1}{#4}{#5}{#7}}
{\usebibmacro{name:last-first}{#1}{#3}{#5}{#7}}%
\usebibmacro{name:andothers}}
\renewcommand{\jourvolstring}{\addcomma\space}
\renewcommand{\publisherdatepunct}{\addspace}
\DefineBibliographyStrings{ngerman}{%
seenote = {a.\,a.\,O\adddot}
}
%% cite:seenote umdefinieren
\makeatletter
\renewbibmacro*{cite:seenote}{%
\ifbool{cbx:parencitefoot}
{\printtext{%
\setunit{\addcomma\space}%
\bibstring{seenote}%
\setunit{\addnbspace}}%
\ifbool{cbx:pageref}
{\ifsamepage{\the\value{instcount}}
{\csuse{cbx@first@\thefield{entrykey}}}
{}%
\printtext{%
\setunit{\addcomma\space}%
\bibstring{seenote}%
\setunit{\addnbspace}%
\pageref{cbx@\csuse{cbx@first@\thefield{entrykey}}}}}
{}}
{\printtext{%
\setunit{\addcomma\space}%
\bibstring{seenote}%
\setunit{\addnbspace}}%
\ifbool{cbx:pageref}
{\ifsamepage{\the\value{instcount}}
{\csuse{cbx@first@\thefield{entrykey}}}
{}
\printtext{%
\setunit{\addcomma\space}%
\bibstring{seenote}%
\setunit{\addnbspace}%
\pageref{cbx@\csuse{cbx@first@\thefield{entrykey}}}}}
{}}}
\renewcommand*{\mkbibnamelast}[1]{%
\ifboolexpr{
test {\ifcurrentname{editor}}
or
( test {\ifcurrentname{labelname}}
and
not test {\ifnameundef{editor}} )
}
{#1}
{\ifboolexpr{
bool {bbx:oldauthor}
and
bool {oldauthor}
and
( test {\ifcurrentname{author}}
or
( test {\ifcurrentname{labelname}}
and
not test {\ifnameundef{author}} ) )
}
{#1}
{\bbx@namefont{#1}}}}
\makeatother
\begin{document}
Zitat Buch\cite[S.23]{KPMG}
Wiederholungszitat Buch\cite[S.28]{KPMG}
Zitat Buch\cite[S.23]{KPMGa}
Wiederholungszitat Buch\cite[S.28]{KPMGa}
\printbibliography[maxnames=99]
\end{document}Marco

