如何将 bib 文件导入 Latex?

How can I import bib File to Latex?

我刚开始使用 Latex。我想将文件 reference.bib 导入我的文件 document.tex。以上是我的代码

reference.bib

@article{lin1973,
   author = "Shen Lin and Brian W. Kernighan",
   title = "An Effective Heuristic Algorithm for the Travelling-Salesman Problem",
   journal = "Operations Research",
   volume = 21,
   year = 1973,
   pages = "498-516"
}

这是我的 document.tex

\documentclass[a4paper,12pt, fleqn]{scrreprt}

\usepackage{natbib}

\begin{document}
\bibliographystyle{plainnat}
\bibliography{reference}
\end{document}

但是当我 运行 我的 Latex 时没有任何反应。谁能帮我。 提前致谢^^

有单独的平台可以问LateX-related questions。 除此之外,这个问题真的很模糊。

让我们从没有内容的文档开始。假设您的 LateX 环境已正确设置,向您的文档添加一些内容应该会有所作为。

编译,运行 BibteX 两次,再编译几次,应该设置好了。 编辑:删除了屏幕截图输出文件,因为它不必要地占用了 space.

BibTeX 构建通常在您的解释器中找到:

\documentclass[a4paper,12pt, fleqn]{scrreprt}

\usepackage{natbib}

\begin{document}
Blablabla happened because I need to cite \cite{lin1973}..
\bibliographystyle{plainnat}
\bibliography{reference}
\end{document}