书目问题 apacite: \@@cite 的参数有一个额外的 }

书目问题 apacite: \@@cite 的参数有一个额外的 }

我在论文中引用参考文献时遇到了问题。我使用了该apacite包。以下是代码的基本结构:

\documentclass[12pt]{report}
\usepackage{apacite}

\begin{document}

\chapter{Literature Review}
Several methodological challenges arise when modeling count data (see 
\cite{lord_statistical_2010} for a good review).

\bibliographystyle{apacite}
\bibliography{references}

\end{document}

这是 .bib 文件中的条目:

@article{lord_statistical_2010,
title = {The statistical analysis of crash-frequency data: A review and 
      assessment of methodological alternatives},
volume = {44},
issn = {09658564},
shorttitle = {The statistical analysis of crash-frequency data},
url = {http://linkinghub.elsevier.com/retrieve/pii/S0965856410000376},
doi = {10.1016/j.tra.2010.02.001},
number = {5},
journal = {Transportation Research Part A: Policy and Practice},
author = {Lord, Dominique and Mannering, Fred},
month = jun,
year = {2010},
pages = {291--305}
    }

但是当我运行PDFLaTeX我收到以下错误:

error: line 0 : Argument of \@@cite has an extra }

references.bib使用 Zotero 软件生成文件。我最近将包样式更改为apacite。以前我使用过\bibliographystyle{plain},并且引用已按要求生成。但现在我遇到了这个障碍。

我现在不知道为什么会发生这种情况。任何帮助都非常感谢!

相关内容