我看到论坛中有几条帖子建议随附的 Miminal 代码应myref.bib
在此处的 tex 文件中打印文件中的引用。对于我来说,此文件的输出是一个 pdf 文件,其中整个页面上只写有“你好吗”。
\documentclass[12pt]{article}
\usepackage{natbib}
\begin{document}
How are you
\bibliographystyle{acm}
\bibliography{myref.bib}
\end{document}
该文件myref.bib
位于同一目录中,并具有以下 3 个条目:
@article{diamondprop,
author = {Kania D R, Landstrass M I and Plano M A},
title = {Diamond radiation detectors},
journal = {Diamond and Related Material},
year = { 1993 },
volume = {2},
number = {1012–9}
}
答案1
不用bibiliography{myref.bib}
只写bibiliography{myref}
,只需在 .bib 文件中再做一次更改,它就可以正常工作。
\documentclass[12pt]{article}
\usepackage{natbib}
\begin{document}
How are you \cite{diamondprop}
\bibliography{myref}
\bibliographystyle{plain}
\end{document}
我还修改了 .bib 文件。add
在第一作者和第二作者的名字之间添加,理想情况下你应该在每个作者的名字之间都这样做。这是我使用的 .bib 文件
@article{diamondprop,
author = {Kania, D. R. and Landstrass, M. I. and Plano, M. A.},
title = {Diamond radiation detectors},
journal = {Diamond and Related Material},
year = { 1993 },
volume = {2},
number = {1012–9}
}
如果你是新手,这个链接可能会有帮助:使用 BIBTeX 创建参考书目
我忘了提到您需要按照以下顺序编译四次:pdflatex、bibtex、pdflatex、pdflatex。