Possible Duplicate:
Set limit to one author when using “et al.” in biblatex
I am using biblatex to manage the bibliography of a large document. Everything is working fine, but I have found a small problem that I am not able to solve:
I am calling:
\usepackage[style=authoryear, maxbibnames=99, mincitenames=1, maxcitenames=2, backref=true, hyperref=true, dashed=false, firstinits=true, backend=biber, bibencoding=utf8]{biblatex}
At the beginning of my document, and everything works as expected, viz.
\textcite{me2012} -> me (2012)
\textcite{me_and_you2012} -> me and you (2012)
\textcite{me_and_fred_and_dave2012} -> me et al. (2012)
However if I have another "me et al." in the document, the following thing happens:
\textcite{me_and_fred_and_dave2012} -> me, fred, et al. (2012)
\textcite{me_and_sarah_and_lucy2012} -> me, sarah, et al. (2012)
This is very annoying since it seems to be ignoring the mincitenames=1 given at the beginning. I was expecting:
\textcite{me_and_fred_and_dave2012} -> me et al. (2012)
\textcite{me_and_sarah_and_lucy2012} -> me et al. (2012)
Is there any way to block this behaviour?