我正在尝试使用 APA 标准引用一篇有多位作者的论文natbib
。
对于初始引用,应列出所有作者,然后对于后续引用,应开始使用et al
。我无法使其工作,引用的第一个实例如下所示:
我尝试使用和\citep{}
,\citep*{}
但都没有展开作者。以下是 bib 文件中显示的条目:
@article{Goodrich2009,
year = {2009},
month = dec,
publisher = {American Medical Association ({AMA})},
volume = {163},
number = {12},
author = {Samantha A. Goodrich and Tiffany A. Pempek and Sandra L. Calvert},
title = {Formal Production Features of Infant and Toddler {DVDs}},
journal = {Archives of Pediatrics {\&} Adolescent Medicine}
}
我正在使用apalike
作为参考书目样式,但使用时问题仍然存在apa
。
答案1
尝试使用apacite
\documentclass[12pt]{article}
\usepackage[natbibapa]{apacite}
\usepackage{filecontents}
\begin{filecontents*}{\jobname.bib}
@article{Goodrich2009,
year = {2009},
month = dec,
publisher = {American Medical Association ({AMA})},
volume = {163},
number = {12},
author = {Samantha A. Goodrich and Tiffany A. Pempek and Sandra L. Calvert},
title = {Formal Production Features of Infant and Toddler {DVDs}},
journal = {Archives of Pediatrics {\&} Adolescent Medicine}
}
\end{filecontents*}
\begin{document}
Dummy text here \citep{Goodrich2009}
\citet{Goodrich2009}
\bibliographystyle{apacite}
\bibliography{\jobname}
\end{document}
获得