von Gast » So 14. Aug 2016, 12:37
Mit
biblatex (und
biber) geht das gar nicht so schwierig (siehe
“And” between last and second last cite using the \footcites command and authoryear-icomp). Du brauchst nur
\renewcommand*{\multicitedelim}{%
\iflastcitekey
{\addspace\bibstring{and}}
{\addcomma}%
\space}
Mehr Hilfe zum Thema biblatex, falls Du es nicht bereits nutzen solltest, findest Du in den von Beinschuss oben verlinkten wichtigen Hinweisen.
Zusammen
\documentclass[ngerman]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{babel}
\usepackage{csquotes}
\usepackage[style=numeric,backend=biber,sorting=none]{biblatex}
\addbibresource{biblatex-examples.bib}
\renewcommand*{\multicitedelim}{%
\iflastcitekey
{\addspace\bibstring{and}}
{\addcomma}%
\space}
\begin{document}
\cite{sigfridsson,worman}
\cite{sigfridsson}
\cite{sigfridsson,worman,geer}
\printbibliography
\end{document}
Mit [p]biblatex[/p] (und [p]biber[/p]) geht das gar nicht so schwierig (siehe [url=http://tex.stackexchange.com/q/214844/35864]“And” between last and second last cite using the \footcites command and authoryear-icomp[/url]). Du brauchst nur[code]\renewcommand*{\multicitedelim}{%
\iflastcitekey
{\addspace\bibstring{and}}
{\addcomma}%
\space}[/code]
Mehr Hilfe zum Thema [tt]biblatex[/tt], falls Du es nicht bereits nutzen solltest, findest Du in den von Beinschuss oben verlinkten wichtigen Hinweisen.
Zusammen[code]\documentclass[ngerman]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{babel}
\usepackage{csquotes}
\usepackage[style=numeric,backend=biber,sorting=none]{biblatex}
\addbibresource{biblatex-examples.bib}
\renewcommand*{\multicitedelim}{%
\iflastcitekey
{\addspace\bibstring{and}}
{\addcomma}%
\space}
\begin{document}
\cite{sigfridsson,worman}
\cite{sigfridsson}
\cite{sigfridsson,worman,geer}
\printbibliography
\end{document}[/code]