我在使用 Bibtex 时总是收到此警告:有号码无卷... 日志为空...
谁能告诉我这里出了什么问题,如何纠正?
我正在使用 TeXnicCenter 和 MikTeX 包。
答案1
@article
如果您引用一个或多个有字段number
但缺少字段的条目,BibTeX 将返回该错误volume
。例如,如果您在pdflatex
bibtex
\documentclass{article}
\usepackage{filecontents}
\begin{filecontents*}{mybiblio.bib}
@article{Jubobs:2013,
author = {Jubobs},
title = {{How} to stay away from {TeX.SE} for a solid hour},
journal = {International Journal of Addiction},
year = {2013},
number = {2},
pages = {104--111},
}
\end{filecontents*}
\begin{document}
See \cite{Jubobs:2013} for further details.
\bibliographystyle{plain}
\bibliography{mybiblio}
\end{document}
BibTeX 将返回以下警告:
警告——Jubobs:2013 中有数字,但没有数量
如果此后运行pdflatex
两次,输出将是:
Mico 在上面的评论中给出了该错误的原因:该字段在BibTeX 条目volume
中是必填字段@article
@article
. (请注意,如果一个或多个条目既不包含volume
也不包含字段, BibTeX 也会返回错误,尽管错误不同。number
)
例如,如果您向该 BibTeX 条目添加一个体积字段,volume = {11}
然后运行,,,,,pdflatex
BibTeX将不会返回任何错误,并且输出将是:bibtex
pdflatex
pdflatex