参考文献中始终仅显示 1 位作者(APA 格式)

参考文献中始终仅显示 1 位作者(APA 格式)

我正在 Overleaf 上撰写论文,我想在参考文献中始终只显示 1 位作者(如果有多位作者)。在第一位作者之后,显示“et al., YYYY”(APA 格式)。

目前,在某些情况下会显示这样的信息,但并非所有情况都是如此。我不是 Latex 专家,我知道一些软件包的导入顺序不正确。看看我的代码:

主文本

\documentclass[oneside, 12pt, fleqn]{memoir}
\usepackage{format}
\usepackage[justification=centering, labelsep=period]{caption}
\usepackage[english]{babel}     
\usepackage{indentfirst}
\usepackage{listings}
\usepackage{newtxtext}
\usepackage{newtxmath}
\usepackage{graphicx}
\usepackage{doi}
\usepackage{apacite} %APA style referencing
\usepackage{titlesec}
\usepackage{gensymb}
\usepackage{multirow}
\usepackage{blindtext}
\usepackage{ragged2e} %for centering
\usepackage{float} %to avoid floating figures
\usepackage{booktabs} %merge columns
\usepackage{lscape} %vertical table
\usepackage{hyperref}

参考文献.tex

\renewcommand{\bibname}{REFERENCES}

\bibliography{references}
\bibliographystyle{apacite} %APA style referencing

参考文献.bib

@article{rn71,
author={Tattaris, Maria and Reynolds, Matthew P. and Chapman, Scott C.},
year={2016},
...
@article{rn70,
title = {Low-altitude, high-resolution aerial imaging systems for row and field crop phenotyping: A review},
author = {Sindhuja Sankaran and Lav R. Khot and Carlos Zúñiga Espinoza and Sanaz Jarolmasjed and Vidyasagar R. Sathuvalli and George J. Vandemark and Phillip N. Miklas and Arron H. Carter and Michael O. Pumphrey and N. Richard Knowles and Mark J. Pavek},
...

电流输出:

在此处输入图片描述

相关内容