当我在我的 .bib 文件上运行 bibtex 时收到此警告消息,并且我的参考书目中出现了一个奇怪的条目。
[编辑] 添加 MWEB:
\documentclass{article}
\usepackage{abntex2cite}
\begin{document}
\bibliography{mweb} %use a bibtex bibliography file refs.bib
\cite{key}
\bibliographystyle{plain} %use the plain bibliography style
\end{document}
mweb.bib:
@book{key,
author = {Author, A.},
year = {2001},
title = {Title},
publisher = {Publisher},
}
输出:
警告:
答案1
您不能将plain
参考书目样式与 一起使用abntex2cite
,因为它定义(并加载)了自己的参考书目样式。因此,以下文档编译时没有警告或错误:
\RequirePackage{filecontents}
\begin{filecontents}{\jobname.bib}
@book{key,
author = {Author, A.},
year = {2001},
title = {Title},
publisher = {Publisher},
}
\end{filecontents}
\documentclass{article}
\usepackage{abntex2cite}
\begin{document}
\cite{key}
\bibliography{\jobname} %use a bibtex bibliography file refs.bib
\end{document}