我在用apacite
格式化会议录条目,从我读到的内容来看,在 APA 格式中,卷和页应该用逗号分隔,如下所示:
Author, A. A., & Author, B. B. (1996). Title of journal article: Subtitle of journal article. Title of journal, volume number, first page-last page.
相反,apacite 将卷和页放在括号中:IEEE 系统、人与控制论国际会议(第 1 卷,第 317-322 页)。
我以为apacite
格式符合 APA 标准,但在这种情况下似乎并非如此。有没有办法改变这种行为?
答案1
的默认行为apacite
就是您想要的;请参见下面的示例。我怀疑您在代码中加载的另一个包apacite
以某种方式与之交互。
然而,没有看到最小工作示例(MWE),问题的原因很难找出。请发布 MWE,我会完善我的答案以进一步帮助您。
\documentclass{article}
\usepackage{apacite}
\usepackage{filecontents}
\begin{filecontents}{mylib.bib}
@ARTICLE{Vickrey1961,
AUTHOR = {W. Vickrey},
TITLE = {Counterspeculation, auctions and sealed tenders},
JOURNAL = {Journal of Finance},
YEAR = {1961},
volume = {16},
pages = {8--37},
}
\end{filecontents}
\begin{document}
\citeA{Vickrey1961} showed that incentive compatibility is guaranteed if the auction winner has to pay the second highest price.
\bibliographystyle{apacite}
\bibliography{mylib}
\end{document}