当只有一位作者时,Apacite 也会打印名字

当只有一位作者时,Apacite 也会打印名字

我正在使用该apacite软件包撰写论文。我注意到,当我只有 1 位作者作为参考时,它也会打印出名字。根据 APA 指南,这种情况不应该发生。有人知道为什么会这样吗?

梅威瑟:

\documentclass[12pt]{article}
\usepackage[natbibapa]{apacite}
\begin{document}  

According to \citet{Oxfam} ...

\bibliographystyle{apacite}
\bibliography{bib}
\end{document}

bib.bib

@misc{Oxfam,
author = "{Jon Slater}",
title = "Annual income of richest 100 people enough to end global poverty four times over",
year = "2013",
howpublished = "{\url{https://www.oxfam.org/en/pressroom/pressreleases/2013-01-19/annual-income-richest-100-people-enough-end-global-poverty-four}}"
note = {Accessed: 2018-09-17}

文本输出:

根据 Jon Slater (2013) 的说法,

答案1

author = {Jon Slater},

或者

author = "Jon Slater",

如果你同时使用引号和花括号,如

author = "{Jon Slater}",

作者不是有名字的人乔恩和姓氏斯莱特,而 BibTeX 会将姓名解析为一个单位,即姓氏为乔恩·斯莱特并且没有名字。这对于企业作者(看在书目条目的“作者”字段中使用“公司作者”(完整拼写出姓名)),但(几乎)从来不是您想要的人名。


在无名字段中构造

<field> = "{<contents>}",

不会扰乱名称解析,但可能会完全抑制句子大小写功能。有关更多信息,请访问BibTeX 在创建 .bbl 文件时丢失大写字母。如果您不想要句子大小写,我强烈建议不要使用应用句子大小写的样式,而是将字段的整个内容包裹在括号中。

在示例中howpublished实际上并没有从中获得很多"{...}""..."或者{...}就足够了。

相关内容