biblatex:关于 `maxcitenames` 选项的问题:“\textcite” 使用的名称比“maxcitenames”多(作者姓名相似或相同但年份不同)

biblatex:关于 `maxcitenames` 选项的问题:“\textcite” 使用的名称比“maxcitenames”多(作者姓名相似或相同但年份不同)
  • 我很困惑 :)。
  • 我使用了包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}

答案1

Manuel (OP) 在用户 moewe 的评论后进行了更新:就我而言,这个选项uniquelist = minyear是我需要的,因为我的问题与不同年份


biblatex 尝试确保列表是唯一的。uniquelist=false如果您不希望这样,则使用,然后您将得到(再次调用 biber 后):

在此处输入图片描述

相关内容