
参考文献のリストを含むファイルを作成し、正しく引用することができました。問題は、参考文献の前に表示される余分な「参考文献」という単語にあります (赤で囲まれています)
\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{…}
?