我正在使用 biblatex + biber,我的一些引文只列出了第一作者,后面跟着 et al。我想让我的所有参考文献都包含所有名称,无论如何。我当前的设置是
\usepackage[
abbreviate=false,
backend=biber,
backref=true,
refsection=chapter,
sortcites=true,
sorting=nyt,
sortlocale=en_US,
style=numeric-verb
]{biblatex}
但我仍然能得到像Meijaard et al.
参考书目中的参考资料。我怎样才能强制显示名称而不使用缩写?abbreviate=false
显然不行。
此具体示例的引用条目为:
@article{Meijaard2007,
author = {Meijaard, Jaap P. and Papadopoulos, Jeremy M. and Ruina, Andy and Schwab, Arend L.},
journal = {Proceedings of the Royal Society A: Mathematical, Physical and Engineering Sciences},
month = aug,
number = {2084},
pages = {1955--1982},
title = {{Linearized dynamics equations for the balance and steer of a bicycle: a benchmark and review}},
volume = {463},
year = {2007}
}
有任何想法吗?
答案1
正如 Corentin 提到的,在 biblatex 选项中设置 maxnames 可以解决这个问题,所以
\usepackage[
abbreviate=false,
backend=biber,
backref=true,
refsection=chapter,
sortcites=true,
sorting=nyt,
sortlocale=en_US,
style=numeric-verb,
maxnames=10
]{biblatex}
成功了。