尝试在 Texworks 中使用 BibTeX 但参考文献为空

尝试在 Texworks 中使用 BibTeX 但参考文献为空

我正在尝试在 Texworks 中使用 BibTeX。我的代码如下:

\documentclass[12pt]{article}
\usepackage{natbib}
\title{Weekly Progress}
\author{author}
\date{\today}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{savesym}
\usepackage{arcs}
\usepackage{geometry}
\usepackage{amssymb}
\usepackage{mathrsfs}
\usepackage{indentfirst}
\geometry{left=2cm,right=2cm,top=1cm,bottom=1cm}
\usepackage{graphicx}
\begin{document}
\maketitle
\begin{abstract}
blablabla
\end{abstract}

\bibliographystyle{plain}

\bibliography{reference}

\end{document}

然后我创建了一个文件reference.bib:

@inproceedings{zhang2019gradient,
  title={Why Gradient Clipping Accelerates Training: A Theoretical Justification for Adaptivity},
  author={Zhang, Jingzhao and He, Tianxing and Sra, Suvrit and Jadbabaie, Ali},
  booktitle={International Conference on Learning Representations},
  year={2019}
}

为了方便起见,我暂时将这两个文件放在桌面上。我按照如何将 BibTex 与 TexWorks 一起使用?但现在参考部分是空的。

备注: 1. 我在主文件中运行pdflatex+bibtex+pdflatex*2。

  1. 我的 bbl 文件不包含我想要的参考。

  2. 我没有 blg 文件。

问题:我哪里做错了?

相关内容