引用中缺少字段

引用中缺少字段

我不知道我的 bibitem 出了什么问题:

@article{wraith1974,
author  = {Wraith, G.},
title   = {Artin Glueing},
year    = {1974},
journal = {Journal of Pure and Applied Algebra},
volume  = {4},
issue = {1},
pages   = {345-358}
}

我的输出是没有问题字段,如下所示:

在此处输入图片描述

我目前正在使用 Overleaf.com 的easychair样式。有什么建议吗?可能出了什么问题?这个特定的输出是用 获得的,\bibliographystyle{plain}但我也尝试用其他样式来修复它。

更糟糕的是,它在其他项目中确实发挥了作用。

答案1

注意issue不是由定义的字段任何我熟悉的书目风格,包括plainabbrv

解决办法?只需将其替换issue = {1},为即可number = {1},

在此处输入图片描述

\documentclass{article} % or some other suitable document class

\begin{filecontents}[overwrite]{mybib.bib}
@article{wraith1974,
author  = {Wraith, G.},
title   = {Artin Glueing},
year    = {1974},
journal = {Journal of Pure and Applied Algebra},
volume  = {4},
number  = {1},
pages   = {345--358}
}
\end{filecontents}

\usepackage{cite} % citation management package, numerical style
\bibliographystyle{abbrv}

\begin{document}
\nocite{*}
\bibliography{mybib}
\end{document}

相关内容