
참고 문헌 목록이 포함된 파일을 생성하고 올바르게 인용했습니다. 문제는 참고 문헌 앞에 나타나는 추가 "참조" 단어(빨간색 원)에 있습니다.
\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{…}
?