我的參考中出現參考標題

我的參考中出現參考標題

我創建了一個包含參考文獻列表的文件並設法正確引用它,我的問題在於出現在我的參考文獻之前的這個額外的“參考文獻”單詞(紅色圓圈)

\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{…}指令對參考文獻部分進行編號?

相關內容