- I am confused :).
- I use the
maxcitenameoption of thebiblatexpackage but the result in the MWE does not seem to be plausible. - Why are so many names used in the
\textciteoutput? I trust thatbiblatexworks great and I assume that the problem is me :).
\documentclass{article}
\usepackage[
style=authoryear-comp,
maxcitenames = 2, % <--- No effect?
]{biblatex}
\addbibresource{\jobname.bib}
\usepackage{csquotes}
\begin{filecontents}{\jobname.bib}
@inproceedings{DaLio2014,
address = {Paris , France},
author = {{Da Lio}, Mauro and Biral, Francesco and Bertolazzi, Enrico and Galvani, Marco and Bosetti, Paolo and Saroldi, Andrea and Tango, Fabio},
booktitle = {Transport Research Arena (TRA) 2014 Proceedings},
keywords = {advanced driver assistance systems,co,continuous support,driver,fp7 interactive project,human robot interactions,interactIVe},
month = {04},
title = {{The driver Continuous Support function in the FP7 \enquote{interactIVe} project: an implementation based on the \enquote{co-driver} metaphor}},
url = {https://trid.trb.org/View/1327742},
year = {2014}
}
@article{DaLio2015,
author = {{Da Lio}, Mauro and Biral, Francesco and Bertolazzi, Enrico and Galvani, Marco and Bosetti, Paolo and Windridge, David and Saroldi, Andrea and Tango, Fabio},
doi = {10.1109/TITS.2014.2330199},
issn = {1524-9050},
journal = {IEEE Transactions on Intelligent Transportation Systems},
keywords = {interactIVe},
month = {02},
number = {1},
pages = {244--263},
publisher = {Institute of Electrical and Electronics Engineers Inc.},
title = {{Artificial Co-Drivers as a Universal Enabling Technology for Future Intelligent Vehicles and Transportation Systems}},
volume = {16},
year = {2015}
}
\end{filecontents}
\begin{document}
\section{Option \texttt{maxcitenames = 2} is active}
\begin{description}
\item \textcite{DaLio2014}
\item \textcite{DaLio2015}
\end{description}
\printbibliography
\end{document}


uniquelist=true,anduniquelist=false,the year is irrelevant. If you want disambiguation only in the same year, you needminyear(https://tex.stackexchange.com/q/474511/35864). But as I read the question you wantmaxcitenamesto be respected at all times, i.e. you don't want disambiguation in any case. – moewe Feb 25 '22 at 08:17