.bbl ファイルの参考文献情報を .tex ソース ファイルに埋め込む必要があります。これは、Google の多くの場所によると、\bibliography{} コマンドを置き換えて、.bbl ファイルの内容を .tex ファイルにコピーするのと同じくらい簡単なはずです。
ただし、これを行うと、次のエラーが発生します。
./Witmer.tex:82: Undefined control sequence.
<argument> \@listctr
l.82 \bibitem{bhole-ner_over_time}
The control sequence at the end of the top line
of your error message was never \def'ed. If you have
misspelled it (e.g., `\hobx'), type `I' and the correct
spelling (e.g., `I\hbox'). Otherwise just continue,
and I'll forget about whatever was undefined.
./source.tex:82: You can't use `\relax' after \the.
<recently read> \c@
l.82 \bibitem{bhole-ner_over_time}
I'm forgetting what you said and using zero instead.
この時点で何が問題なのかわかりません。cite パッケージを含めていますが、.bbl ファイルを使用するとすべて問題ありません。
私はbibtexでbblファイルを生成しています。ドキュメントの関連セクション:
\bibliographystyle{plain}
\begin{thebibliography}{9}
...trimmed for size...
\bibitem{geo-spatialexpressions}
Annette Herskovits.
\newblock {\em Representation and processing of spatial expressions}.
\newblock Lawrence Erlbaum Associates, Inc., Mahwah, NJ, USA, 1998.
\end{thebibliography}
アップデート:
問題と提案された修正は次のとおりです: エラーは基本的に、参考文献生成コードが各 \bibitem にいくつかの引数があることを期待していることを意味します:
\bibitem[\protect\citeauthoryear{Herskovits}{1998}]{geo-spatialexpressions}
Herskovits, A.
\newblock 1998.
\newblock {\em Representation and processing of spatial expressions}.
\newblock Mahwah, NJ, USA: Lawrence Erlbaum Associates, Inc.
私は実際に \cite の定義と参考文献の生成をいじっているスタイル ファイルを使用しようとしていました。