如何将bib文件导入Latex?

时间:2017-07-26 11:13:56

标签: latex bibtex

我是使用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}

但是当我运行我的乳胶时没有任何反应。谁能帮我。 在此先感谢^^

1 个答案:

答案 0 :(得分:1)

有一个单独的平台可以问LateX-related questions。 除此之外,问题非常模糊。

让我们从您的文档开始没有内容。假设您的LateX环境已正确设置,则在文档中添加内容应该可以执行某些操作。

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

BibTeX构建通常在您的口译员中找到:

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

\usepackage{natbib}

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