I didn't know how to formulate my problem in a simple search string, so maybe it was asked before. Sorry in this case!
I try to create a mere literature list, that is sorted after the nyt scheme. However two entries with the same first author and the same year are not sorted after the second author (as it is the case for all other entries), I guess because there are more authors in one of the entries and biblatex sorts it under "firstauthor et al.".
Here my example:
Code: Select all
\documentclass{scrartcl}
\usepackage[style=authoryear-comp,sorting=nyt,maxbibnames=20]{biblatex}
\addbibresource{lit.bib}
\begin{document}
\nocite{*}
\printbibliography
\end{document}
Code: Select all
@ARTICLE{Frit1,
author = {Fritz, U. and Alcalde, L. and Vargas-Ram\'{i}rez, M. and Goode, E. V. and Fabius-Turoblin, D. U. and Praschag, P.},
title = {Northern genetic richness and southern purity, but just one species in the \textit{Chelonoidis chilensis} complex},
journal = {Zoologica Scripta},
year = {2012},
volume = {41},
pages = {220-232},
doi = {10.1111/j.1463-6409.2012.00533.x}
}
@ARTICLE{Frit2,
author = {Fritz, U. and Corti, C. and P\"{a}ckert, M.},
title = {Mitochondrial DNA sequences suggest unexpected phylogenetic position
of Corso-Sardinian grass snakes (\textit{Natrix cetti}) and do not
support their species status, with notes on phylogeography and subspecies
delineation of grass snakes},
journal = {Organisms Diversity \& Evolution},
year = {2012},
volume = {12},
pages = {71-80},
doi = {10.1007/s13127-011-0069-8}
}
I would expect Frit2 to be listed after Frit1, which is actually not the case. Does anyone have an easy idea how to correct the observed behaviour?
Thanks a lot & best regards!