参考文献の問題 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.bibZotero ソフトウェアを使用してファイルを生成します。ごく最近、パッケージ スタイルを に変更しましたapacite。以前は を使用しており\bibliographystyle{plain}、参照は希望どおりに生成されていました。しかし、今、この障害にぶつかっています。

なぜこのようなことが起こるのか、今のところわかりません。どなたか助けていただければ幸いです。

関連情報