警告消息:--“abnt-url-package”的条目类型未定义样式--文件 abntext2options.bib 的第 199 行

警告消息:--“abnt-url-package”的条目类型未定义样式--文件 abntext2options.bib 的第 199 行

当我在我的 .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}

相关内容