我正在创建一个 iopart 文档,我需要使用哈佛格式包含参考文献。我的问题是我无法让它在列出参考文献之前打印出“参考文献”一词。我不知道我错过了什么,我尝试了不同的文档类,这有效,但出于某种原因,它不适用于 iopart。我的所有参考文献都在名为 bibliography_all.bib 的 .bib 文件中。
这是我的 LaTex 代码的一个示例:
\documentclass[12pt]{iopart}
\usepackage{harvard}
\begin{document}
\bibliographystyle{dcu.bst}
This is a test
\cite{ACS2017}
\bibliography{bibliography_all}
\end{document}
任何帮助都将不胜感激。我对此还很陌生。非常感谢!!
答案1
要获得参考书目的标题,只需自己添加即可——例如
\section*{References}
\bibliography{bibliography_all}