APA 引用多位作者--为什么切换顺序会影响效果?

APA 引用多位作者--为什么切换顺序会影响效果?

我想引用两篇论文,这两篇论文的作者都超过三位,采用 APA 格式。据我所知,当作者数量超过三位时,无论是否是第一次,都只会显示第一作者。我正在使用 overleaf 平台,想知道为什么切换引用顺序会改变格式。

以下是我引用该论文的方式,

such as A and B
\citep{Petkov2008,Petkov2009} \citep{Petkov2009,Petkov2008}

编译后的文件显示如下。例如 A 和 B (Petkov et al., 2008; Petkov, Logothetis, & Obleser, 2009) (Petkov et al.,2008, 2009

这两篇论文在 reference.bib 中的样子如下

@article{Petkov2008,
author = {Petkov, Christopher and Kayser, Christoph and Steudel, Thomas and Whittingstall, Kevin and Augath, Mark and Logothetis, Nikos},
year = {2008},
month = {04},
pages = {367-74},
title = {A voice region in the monkey brain},
volume = {11},
journal = {Nature neuroscience},
doi = {10.1038/nn2043}
}

@article{Petkov2009,
author = {Petkov, Christopher and Logothetis, Nikos and Obleser, Jonas},
year = {2009},
month = {07},
pages = {419-29},
title = {Where Are the Human Speech and Voice Regions, and Do Other Animals Have Anything Like Them?},
volume = {15},
journal = {The Neuroscientist : a review journal bringing neurobiology, neurology and psychiatry},
doi = {10.1177/1073858408326430}
}

感谢大家的时间和帮助:)))

答案1

如果我正确理解了您提供的(有些零散的)信息,那么您使用的是apacite引文管理系统(可能带有选项natbibapa)和apacite参考书目样式。请注意apacite实现了第六版APA 手册。

如果您的文档需要遵守当前的格式要求,第七版手册,您目前唯一可行的选择是切换到biblatex/biber并采用该apa样式。(还有一种apa6样式,我相信您可以猜到,它实现了第 6 版的格式要求。)

在此处输入图片描述

\documentclass{article}
\begin{filecontents}[overwrite]{mybib.bib}
@article{Petkov2008,
author  = {Petkov, Christopher and Kayser, Christoph and Steudel, Thomas 
           and Whittingstall, Kevin and Augath, Mark and Logothetis, Nikos},
year    = {2008},
month   = {04},
pages   = {367--74},
title   = {A voice region in the monkey brain},
volume  = {11},
journal = {Nature Neuroscience},
doi     = {10.1038/nn2043}
}

@article{Petkov2009,
author = {Petkov, Christopher and Logothetis, Nikos and Obleser, Jonas},
year   = {2009},
month  = {07},
pages  = {419--29},
title  = {Where Are the Human Speech and Voice Regions, and 
          Do Other Animals Have Anything Like Them?},
volume = {15},
journa = {The Neuroscientist: A review journal bringing neurobiology, 
           neurology and psychiatry},
doi    = {10.1177/1073858408326430}
}
\end{filecontents}

\usepackage[style=apa,natbib]{biblatex}
\addbibresource{mybib.bib}

\usepackage{xurl}

\begin{document}
\citep{Petkov2008,Petkov2009}

\citet{Petkov2008,Petkov2009}
\printbibliography
\end{document}

相关内容