PDA

Archiv verlassen und diese Seite im Standarddesign anzeigen : biblatex: gleicher autor, gleiches jahr



bobmalaria
08-06-2010, 13:52
hi,

da kommt auch mir mal wieder eine frage in den kopf.

mit untenstehendem beispiel bekomme ich zitate im text in der form (autor 2009a, autor 2009b). also gleicher autor im gleichen jahr. a und b werden automatisch hinzugefügt.

idealerweise hätte ich nun gerne (autor 2009a and b) oder bei drei mal gleicher auor im gleichen jahr (autor 2009a, b and c)

weiß jemand was zu ändern ist?


\begin{filecontents}{test.bib}
@BOOK{monkeyA,
title = {Me and my monkey},
publisher = {},
year = {2009},
author = {Some Guy},
owner = {MW},
timestamp = {2009.07.07}
}
@BOOK{monkeyB,
title = {Me and my monkey extended},
publisher = {},
year = {2009},
author = {Some Guy},
owner = {MW},
timestamp = {2009.07.07}
}
\end{filecontents}

\documentclass{article}


\usepackage[style=authoryear,citestyle=authoryear,sorting=nyt]{biblatex}
\bibliography{test}
\begin{document}
\parencite{monkeyA,monkeyB}
\end{document}

bobmalaria
08-06-2010, 13:57
tja man sollte doch mal öfter in der anleitung nachsehen, authoryear-comp macht das was ich will (glaube ich) :)

lockstep
08-06-2010, 14:11
So ziemlich. authoryear-comp (und seit v0.9 auch autoryear-icomp) produzieren "2009a,b", d.h. kein Trennwort und (vielleicht nicht ganz hübsch) keinen Abstand.

authoryear & Co. setzen übrigens bereits standardmäßig die Option "sorting=nyt".

lockstep