这是我第一次尝试使用 Bibtex 完成我的论文,我非常绝望,因为我无法让它运行。尽管这个论坛上有很多关于未定义引用错误的帖子,但我仍然无法解决这个问题。
我创建了一个非常简单的.bib 和.tex 文件:
.tex 文件:
% test.tex
\documentclass[a4paper,10pt]{article}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\title{Bibtex Test}
\begin{document}
Cite this\cite{testcite}
\bibliographystyle{plain}
\bibliography{references}
\end{document}
.bib文件:
% references.bib
@BOOK{testcite,
author = "Mustermann Max and Kraut Karl",
title = "Fixing Bibtex",
publisher = "Springer",
year = "2015"
}
这两个文件位于同一个文件夹中,我多次运行主文件。我结合使用 TexMaker 和 MikTeX2.9。
没有错误,只有简单的警告序列:
LaTeX 警告:第 1 页上的引用“testcite”在输入行 10 上未定义 LaTeX 警告:存在未定义的引用。
我估计错误发生在我的 TexMaker 设置中。你能帮我吗?
答案1
答案正如@Sigur 所写:运行
(pdf)latex + bibtex + (pdf)latex + (pdf)latex [+ preview]
在 TeXmaker 中,可以使用快捷方式完成此操作 F6 + F11 + F6 + F6 [+ F7]。