以下参考书目代码可能存在什么问题?当我尝试添加 4 位以上作者时,问题出现,参考文献会添加到 4 位作者,如果有 5 位或更多作者,则不会出现该参考文献。
对于以下条目,我正在参考书目中印刷参考资料。
\usepackage[
backend=biber,
style=alphabetic,
sorting=nyt,
citestyle=authoryear,
maxbibnames=99,
maxcitenames=2,
]{biblatex}
@ARTICLE{a5, author={L. {Barrett, R. Adolphs} and S. {Pollak}}, journal={Association for Psychological Science}, title={Corrigendum: Emotional Expressions
Reconsidered: Challenges to Inferring
Emotion From Human Facial Movements}, year={2019},pages={1-50}}
[![enter image description here][1]][1]
但是当我像下面这样添加剩余的作者时,它并没有被添加到参考书目列表中
\usepackage[
backend=biber,
style=alphabetic,
sorting=nyt,
citestyle=authoryear,
maxbibnames=99,
maxcitenames=2,
]{biblatex}
@ARTICLE{a5, author={L. {Barrett, R. Adolphs, S. Marsella, M. Martinez} and S. {Pollak}}, journal={Association for Psychological Science}, title={Corrigendum: Emotional Expressions
Reconsidered: Challenges to Inferring
Emotion From Human Facial Movements}, year={2019},pages={1-50}}
答案1
根据 Biber 也使用的 BibTeX 语法,在这两个例子中,文章都有两位作者,其中第一位作者的名字非常奇特:在第一种情况下,
L.(名字首字母){Barrett,R. Adolphs}(姓氏)
第二种情况是
L.(名字的首字母){Barrett,R. Adolphs,S. Marsella,M. Martinez}(姓氏)
在这两种情况下,正确的语法是
author={L. Barrett and S. Pollak},
author={L. Barrett and R. Adolphs and S. Marsella and M. Martinez and S. Pollak},