我最近刚刚迁移到 Ubuntu 18,我正在尝试设置 LaTeX,就像我在 Mac 上运行它一样。我使用 Atom(使用包latex
和language-latex
)编译 LaTeX。但是 BibTeX 不起作用。当我使用命令时,\cite{}
Atom 不会弹出通常的下拉框,在我输入时会在其中显示不同的参考文献。尝试使用引用键运行,不会产生引用或参考书目,没有错误,但会警告引用未定义。错误是什么?
梅威瑟:
\documentclass{report}
\usepackage{lipsum}
\usepackage{natbib}
\begin{document}
\lipsum[1-2]
\cite{einstein}
\bibliography{/home/user/Desktop/bibtex.bib}
\end{document}
bib 文件的 MWE(位于桌面上):
@article{einstein,
author = "Albert Einstein",
title = "{Zur Elektrodynamik bewegter K{\"o}rper}. ({German})
[{On} the electrodynamics of moving bodies]",
journal = "Annalen der Physik",
volume = "322",
number = "10",
pages = "891--921",
year = "1905",
DOI = "http://dx.doi.org/10.1002/andp.19053221004"
}