參考書目問題 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}並且參考文獻已根據需要生成。但現在我遇到了這個障礙。

我現在不知道為什麼會發生這種情況。任何幫助是極大的讚賞!

相關內容