I am citing two papers by two different groups of authors. The first authors have the same surname and additionally their first names have the same initials (but are not the same names). Their middle names are different. The first author of one of the papers additionally is the second author of the other paper. Also the publications are from the same year.
\documentclass{article}
\usepackage[style=authoryear-comp,maxcitenames=2,maxbibnames=10,url=false,doi=false,isbn=false,dashed=false,firstinits=true]{biblatex}
\DeclareNameAlias{sortname}{last-first}
\begin{filecontents}{biblio.bib}
@article{smithaa,
title = {Some title},
year = {2000},
author = {Smith, Aaron A and Meyer, M and Fitzgerald, F},
journal = {Some journal}
}
@article{smithaz,
title = {Another title},
year = {2000},
author = {Smith, Anton Z and Smith, A A and Doe, John},
journal = {Another journal}
}
@article{differentxy,
title = {Just something else},
year = {2003},
author = {Different, Jason J and Person, Other O and Human, Another A},
journal = {Different Journal}
}
\end{filecontents}
\addbibresource{biblio.bib}
\begin{document}
\parencites{smithaa}{smithaz}.
\parencite{differentxy}.
\printbibliography
\end{document}
With this I get an in-text citation like this:
(Smith et al. 2000a; Smith et al. 2000b).
(Different et al. 2003).
And bibliography entries like this:
Different, J., Person, O., and Human, A. (2003). “Just something else”. In: Different Journal.
Smith, A. A., Meyer, M, and Fitzgerald, F (2000a). “Some title”. In: Some journal.
Smith, A. Z., Smith, A. A., and Doe, J. (2000b). “Another title”. In: Another journal.
However, I think, this is very confusing as it suggests that both publications are written by the same Smith.
I would rather get something like this in the text:
(Smith, A. A. et al. 2000; Smith, A. Z. et al. 2000).
(Different et al. 2003).
In the 'normal' citation (Different et al.) the name should still be shown without the initials.
In the bibliography there should be no "a" and "b" behind the dates:
Different, J., Person, O., and Human, A. (2003). “Just something else”. In: Different Journal.
Smith, A. A., Meyer, M, and Fitzgerald, F (2000). “Some title”. In: Some journal.
Smith, A. Z., Smith, A. A., and Doe, J. (2000). “Another title”. In: Another journal.



backend=bibtextobiblatex, as biber is now the default. – Andrew Swann Jul 31 '13 at 10:04biblatex 3.4it is outdated. Could you please update it with a solution for the currentbiblatex-version? Thanks. – lukascbossert Jun 16 '16 at 11:55