Latex \cite 显示问号而不是数字

Latex \cite 显示问号而不是数字

我知道这个问题以前有人问过,但在不同的背景下,答案对我没有帮助。以下是一个非常简单的 .tex 文件和 .bib 文件。输出的 pdf 在方括号内有一个问号,而不是数字(应该是 1)。我该如何解决这个问题?

文章.tex

\documentclass[12pt, letterpaper]{article}
\begin{document}
The citation: \cite{test123}
\bibliography{bibliography}
\end{document}

参考书目

@inproceedings(test123,
  title={On the possibility of an event},
  author={Schwartz, Daniel G},
  booktitle={Proceedings of the 18th International Conference on Artificial Intelligence (ICAI'16); held as part of WorldComp'16},
  pages={47--51},
  month={July 25--28},
  address={ Las Vegas, NV, USA},
  year={2016},
 }

相关内容