我使用 添加了参考文献BibFile1.bib
,并在BibFile1.bib
其中包含参考标签ref1
。我的 TeX 文档代码是:
\documentclass[12pt,a4paper,oneside]{report}
\begin{document}
\cite{ref1}
\bibliographystyle{IEEEtran}
\bibliography{BibFile1}
\end{document}
在输出中首先打印 [1],然后参考信息。我需要删除这个 [1]。我需要做什么?
答案1
如果您想要打印参考书目而不明确引用参考文献,那么您可以使用\nocite{*}
:
\documentclass[12pt,a4paper,oneside]{report}
\begin{document}
\nocite{*}
\bibliographystyle{IEEEtran}
\bibliography{BibFile1}
\end{document}