我的参考文献没有列在我的 PDF 文件中,并且所有引用都有一个“?”符号而不是数字,即使在 Texmaker 中我的引用也是可选择的。
这是我的 tex 文件:
\usepackage[utf8]{inputenc}
\usepackage{natbib}
\begin{document}
...
efficient inference in universal model classes \cite{PPWIKI}. On the other hand,
...
\bibliographystyle{style}
\bibliography{literature}
\end{document}
我的 bibtex 文件:
@online{PPWIKI,
author = {PROBABILISTIC-PROGRAMMING.org},
title = {The probabilistic programming approach},
year = {2014},
url = {http://probabilistic-programming.org/wiki/Home},
}
我遵循 Texmaker 中的“Quickbuild”(Windows 8 上的 texmaker v4.2 + miktex v2.9.5):
PdfLaTex + Bib(la)tex + PdfLaTex (x2) + 查看 Pdf
任何想法?
答案1
我在你的 MWE 中发现了 2 个问题:
正如@Paul Gessler所说,\bibliographystyle{样式},“style” 不是有效的参考书目样式。要了解有关不同参考书目样式的更多信息,请查看他提供的链接或这个。
我无法编译你的文献资料文件,因为 bibitem 中的最后一个元素末尾有一个冒号 (“网址 = {http://probabilistic-programming.org/wiki/Home}, ")
修复这两个方面后,我就能编译你的代码了。
这是我的 MWE:
\documentclass[12pt,a4paper]{article}
\usepackage[utf8]{inputenc}
\usepackage{natbib}
\begin{document}
efficient inference in universal model classes \cite{PPWIKI}. On the other hand,
\bibliographystyle{plain}
\bibliography{literature}
\end{document}
###literature.bib
@online{PPWIKI,
author = {PROBABILISTIC-PROGRAMMING.org},
title = {The probabilistic programming approach},
year = {2014},
url = {http://probabilistic-programming.org/wiki/Home}
}
最终结果如下: