仅为 parencite biblatex 设置作者数量

仅为 parencite biblatex 设置作者数量

我使用biblatex作者-年份格式的参考书目。我希望使用时只有一个作者\parencite,例如 (Anderson et al. 2009)。但我想显示参考书目中的所有名称。

我尝试了此maxnames=1选项,但它对两者都有效。我该怎么办?

这是我的选项biblatex

\usepackage[style=authoryear-comp,sortcites=true,firstinits=true,%
            doi=false,url=false,isbn=false, hyperref]{biblatex}

答案1

您必须使用选项maxcitenames=1而不是maxnames=1

maxcitenames仅影响文档正文中的引用,maxbibnames仅影响参考书目,以及maxnames影响两者。

因此,biblatex按以下方式加载:

\usepackage[style=authoryear-comp,maxcitenames=1,sortcites=true,%
            firstinits=true,doi=false,url=false,isbn=false,%
            hyperref]{biblatex}

相关内容