Actually this answer would solve my question about how to use the extrayear parameter in biblatex-chicago-style but I have another special case:
\documentclass{article}
\usepackage[authordate,backend=biber,maxnames=1,minnames=1]{biblatex-chicago}
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@article{Smith2012,
author = {A. Smith and S. Else},
title = {A title},
journal = {A Journal},
year = {2012},
}
@article{Smith2012b,
author = {A. Smith and B. Schmidt},
title = {Another title},
journal = {Another Journal},
year = {2012},
}
\end{filecontents}
\addbibresource{\jobname.bib}
\usepackage[colorlinks=true,citecolor=red]{hyperref}
\begin{document}
\cite{Smith2012} said something
\cite{Smith2012b} said something else
\printbibliography
\end{document}
Will give:
Smith and Else 2012 said something
Smith and Schmidt 2012 said something else
However, I'd like it to be:
Smith et al. 2012a said something
Smith et al. 2012b said something else
Can anyone think of an easy way?
biblatex's disambiguation features strike again (the idea is thatbiblatexdoes not want to insinuate that the two works are by the same same set of authors by abbreviating both to "Smith et al." - note also that "et al." is normally taken to be plural, so often two authors are not et-al'd), adduniquelist=falseto disable them. – moewe Sep 08 '16 at 14:15