- 我很困惑 :)。
- 我使用了包
maxcitename
的选项biblatex
,但 MWE 中的结果似乎不太合理。
- 为什么
\textcite
输出中使用了这么多名称?我相信这biblatex
很有效,并且我认为问题出在我身上:)。
\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}