如何删除 BibTex 书目后的数字列表?

如何删除 BibTex 书目后的数字列表?

我想删除参考书目末尾的数字:

在此处输入图片描述

代码如下

\bibliographystyle{plain}
\bibliography{refs}
\cite{Cottle_2009}
\cite{Bhattacharjee2015}
\cite{Wikram98}
\cite{Wikramanayake2011}
\cite{Wingfield98}
\cite{Weise2014}
\cite{Walston2010}
\cite{Trinkel2011}

等等,并附有更多引用,后跟“\end{document}”。

答案1

我建议你更换

\bibliographystyle{plain}
\bibliography{refs}
\cite{Cottle_2009}
\cite{Bhattacharjee2015}
\cite{Wikram98}
\cite{Wikramanayake2011}
\cite{Wingfield98}
\cite{Weise2014}
\cite{Walston2010}
\cite{Trinkel2011}

\usepackage{cite}
\bibliographystyle{plain}
\bibliography{refs}
\nocite{Cottle_2009,Bhattacharjee2015,Wikram98,Wikramanayake2011,Wingfield98}
\nocite{Weise2014,Walston2010,Trinkel2011}

\nocite请注意:(a)文档中包含多条指令,以及 (b) 在一条\nocite指令的参数中包含多条条目,都是完全没问题的。

您希望在格式化的参考书目中显示但又不想创建单独引用标注的任何其他出版物也应该得到处理\nocite

答案2

在说明 bibstyle 和参考书目后删除单个 \cite。

通过 jabref 或任何其他文献库放置所有参考文献。然后只需在代码中调用它即可,例如:\bibliography{reference.bib}

假设reference.bib包含所有rrls。希望这能有所帮助

相关内容