I cite elements from my bibfile using \citet{key}. The reference appears as "Name1, and Name2 (year)" in text where year is a link leading to the bibliography. Now, I want to cite two papers from the same authors from different years. Instead of
Model XYZ is analyzed by Name1, and Name2 (2019) and Name1, and Name2 (2020).
I'd prefer to have something like
Model XYZ is analyzed by Name1, and Name2 (2019, 2020).
Of course, now 2019 should be a link to the 2019 paper in the bibliography and 2020 a link to the 2020 paper in the bibliography. Any ideas of I could adjust the \citet command?
I use biblatex as follows.
\usepackage[style=ext-authoryear,
sorting=nyt,
backend=biber,
natbib=true,
uniquename = false,
uniquelist = false,
firstinits=false,
hyperref=true,
dashed=false,
backref=false,
maxbibnames=99,
maxcitenames=3,
isbn=false,
doi=false]{biblatex}

style=ext-authoryear,(and also withstyle=ext-authoryear-comp,)sorting=nyt,is already the default, so there is no need to give the option again. The optionfirstinits=false,was renamed togiveninits=false,a while ago, it is recommended to use the new name. For (almost?) all intents and purposes the optionhyperref=true,is no better than the defaulthyperref=auto,, the only difference is a warning if you don't load thehyperrefpackage. I suggest you drop thehyperref=true,. – moewe Mar 26 '20 at 21:17