BibLaTeX utiliza varios autores en las citas, aunque las referencias tienen diferentes años

BibLaTeX utiliza varios autores en las citas, aunque las referencias tienen diferentes años

Utilizo BibLaTeX para gestionar citas. Sin embargo, las citas en línea con tres o más autores a veces utilizan más de un autor, aunque estas referencias tienen años diferentes y, por lo tanto, se pueden distinguir.

Te doy un MWE para aclarar mi problema:

\documentclass{report}
\usepackage{filecontents}
\usepackage[backend=biber,style=authoryear,mincitenames=1,maxcitenames=2,giveninits=true,uniquename=mininit]{biblatex}

\begin{filecontents}{mybib.bib}
@article{Test2018,
    author = {Human, B and Person, P and Somebody, B},
    journal = {Journal of Journals},
    number = {1},
    pages = {1--8},
    title = {qwerty},
    volume = {1},
    year = {2018}
}
@article{Test2019,
    author = {Human, B and Random, R and Person, P},
    journal = {Journal of Papers},
    number = {1},
    pages = {1--8},
    title = {asdasd},
    volume = {1},
    year = {2019}
}
@article{Two2019,
    author  = {First, Stephan and Second, Robert},
    journal = {Journal of Research},
    number = {1},
    pages = {3--5},
    title = {A Title},
    volume = {1},
    year = {2019}
}

@article{Three2019,
    author  = {Uno, Alpha and Second, Beta and Third, Gamma},
    journal = {Journal of Stuff},
    number = {1},
    pages = {3--5},
    title = {Another Title},
    volume = {1},
    year = {2019}
}
\end{filecontents} 

\addbibresource{mybib.bib}

\begin{document}

This is a text with \autocite{Test2018} and \autocite{Test2019}. 

This is a two authors citation \autocite{Two2019}.

This is an unrelated citation with three authors \autocite{Three2019}.

\printbibliography
\end{document}

Rendimiento esperado:

This is a text with (Human et al. 2018) and (Human et al. 2019).
This is a two authors citation (First and Second 2019).
This is an unrelated citation with three authors (Uno et al. 2019).

Producción real:

This is a text with (Human, Person, et al. 2018) and (Human, Random, et al. 2019).
This is a two authors citation (First and Second 2019).
This is an unrelated citation with three authors (Uno et al. 2019).

¿Cómo puedo configurar BibLaTeX para que me dé el resultado esperado? Probé varias variantes de uniquenameetc. pero sin éxito.

¡Muchas gracias de antemano!

Respuesta1

Creo que encontré la solución por prueba y error por mi cuenta. La combinación de uniquename=mininity uniquelist=minyearsolo muestra un autor y et al. cuando el año es diferente, pero agrega a,b,c, etc. cuando los autores y el año son idénticos.

Entonces todo el bibtex incluido es:

\usepackage[backend=biber,style=authoryear,mincitenames=1,maxcitenames=2,giveninits=true,uniquename=mininit,uniquelist=minyear]{biblatex}

Quizás esto sea útil para otras personas que tengan problemas similares.

información relacionada