我的参考资料中出现参考标题

我的参考资料中出现参考标题

我创建了一个包含参考文献列表的文件并设法正确引用它,我的问题在于出现在我的参考文献之前的这个额外的“参考”字样(红色圈出)

\documentclass{article}
\usepackage[margin=1in]{geometry}

\title{An article with citations}
\author{myself}
\date{}

\begin{document}
\maketitle
\section{introduction}

This article is about citations. I read a good book~\cite{hassan2012}. I read a good article~\cite{hassan2013}. I like to use \LaTeX`\cite{latex}.

\section{References}
\bibliographystyle{ieeetr}
\bibliography{references}
%\bibliography{../mendeley} will vary depending on OS u r using
\end{document}

在此处输入图片描述

答案1

当你发出

\bibliography{references}

文件\jobname.bbl被加载,通常以

\begin{thebibliography}{...}

article.cls定义thebibliography开始的环境

\section*{\refname}

解决方案很简单:只需\section{References}从代码中删除即可。如果您想要参考部分需要编号,那么请看一下如何使用\bibliography{…}命令对参考文献部分进行编号?

相关内容