Biber 在参考书目中删除了一位作者

Biber 在参考书目中删除了一位作者

我没有使用 biber 的经验,但最近我的参考书目出现了一个奇怪的问题。对于多位作者(>5),参考书目根本不会打印第 4 至第 5 位作者的名字。这是我的 mwe

     \documentclass[11pt,a4paper]{article}
     \usepackage[utf8]{inputenc}
     \usepackage[english]{babel}
     \usepackage{amsmath}
     \usepackage{amsfonts}
     \usepackage{amssymb}
     \usepackage{graphicx}
     \usepackage[left=2cm,right=2cm,top=2cm,bottom=2cm]{geometry}
     \usepackage[
       backend=biber,
       style=apa,
       isbn=false,
       doi=false,
       url=false,
       natbib=true,
       dashed=true, 
       sortlocale=auto, 
       uniquelist=false,
       maxcitenames=1, 
       mincitenames=1, 
       maxbibnames=99,
       minbibnames=4, 
       giveninits=true, 
       uniquename=false, 
       hyperref=auto, 
       ]{biblatex}

 \addbibresource{citations.bib}


 \begin{document}
 \citep{Nejstgaard2008, araujo2015}

 \printbibliography
 \end{document}

围兜条目如下所示:

         @article{Nejstgaard2008,
         title={Quantitative PCR to estimate copepod feeding},
         author={Nejstgaard, Jens C and Frischer, Marc E and Simonelli,    Paolo and Troedsson, Christofer and Brakel, Markus and Adiyaman, Filiz and Sazhin, Andrey F and Artigas, L Felipe},
    journal={Marine Biology},
    volume={153},
    pages={565--577},
    year={2008},
    publisher={Springer}
     }
    @article{araujo2015,
    title={Feeding niche preference of the mudsnail \textit{{P}eringia ulvae}},
    author={Araújo, Cristiano VM and Moreira-Santos, Matilde and Patrício, Joana and Martins, Irene and Moreno-Garrido, Ignacio and Blasco, Julián and Marques, JC and Ribeiro, Rui},
    journal={Marine and Freshwater Research},
    volume={66},
    pages={573--581},
    year={2015},
    publisher={CSIRO}
    }

一旦文档编译完成,缺失的作者将被替换为“...”而不是姓名。我想这是一个简单的设置问题,但任何建议都非常感谢 :-)

答案1

感谢所有回复的人,我现在已将我的参考书目的样式从“apa”更改为“authoryear-comp”,现在效果很好:-)。

相关内容