隐藏论文标题参考书目

隐藏论文标题参考书目

我已经完成了论文写作。但是,只有一个问题。根据我们大学的要求,参考文献包含在单独的章节中,标题为“参考文献”。此外,参考文献的开头不应有参考书目标题。

但是,当我运行文件时,章节名称是正常的,但在参考文献开始之前,标题“参考书目”出现在顶部。我该如何删除它?我付出了很多努力却无法解决这个问题。以下是我一直在使用的代码和包。

\documentclass[12pt,openany,oneside]{book}
\usepackage[pdftex]{graphicx}
\usepackage[a4paper,portrait,left=1.5in,
right=1in,top=1in, bottom=1.33in, footskip=0.33in]{geometry}
\begin{document}
%\pagestyle{plain} \setlinespacing{1.66}
%%%%%%%%%%%%
%\input{Acknowledgement}
\input{mytitle.tex}
%%%%%%%%%%%%%%%%%%%%
\newpage
\pagenumbering{arabic}
\setcounter{page}{1}
\input{chapter1.tex}
%%%%%%%%%%%%%%%%%%
\input{chapter2.tex}
%%%%%%%%%%%%%%%%%%
\input{chapter3.tex}
%%%%%%%%%%%%%%%%
\input{chapter4.tex}
%%%%%%%%%%%%%%%%%
\input{chapter5.tex}
%%%%%%%%%%%%%%%%%%%
\input{chapter6.tex}
%%%%%%%%%%%%%%%%%%%
\input{chapter7.tex}
%%%%%%%%%%%%%%%%%%%
\input{bib.tex}
%%%%%%%%%%%%%%%
\end{document}

参考文件为单独一章,包含以下详细信息:

\chapter{References}
\newpage

\begin{thebibliography} {99}

\bibitem{Ross-2012} Ross, B. (1977).
The development of fractional calculus 1695–1900.
\emph{Historia Mathematica}. 4(1), 75--89.

\bibitem{Euler-1738} Euler, L. (1738). 
De progressionibus transcendentibus seu quarum termini generales algebraice dari nequeunt. 
\emph{Commentarii academiae scientiarum Petropolitanae}. 36--57.

\end{thebibliography}

答案1

在序言中,您可以重新定义\bibname并将\renewcommand\bibname{References}参考文献显示为目录中的一章,您可以\addcontentsline{toc}{chapter}{\bibname}在所需位置使用它,如果您希望它位于目录的末尾,则可以将其作为最后一章。

\documentclass[12pt,openany,oneside]{book}
\usepackage[pdftex]{graphicx}
\usepackage[a4paper,portrait,left=1.5in,
right=1in,top=1in, bottom=1.33in, footskip=0.33in]{geometry}

\renewcommand\bibname{References}%to change the name 

\begin{document}

\tableofcontents

\chapter{A Chapter}
\addcontentsline{toc}{chapter}{\bibname}%to display the references as a chapter in the TOC

\begin{thebibliography}{99}


\bibitem{Ross-2012} Ross, B. (1977).
The development of fractional calculus 1695–1900.
\emph{Historia Mathematica}. 4(1), 75--89.

\bibitem{Euler-1738} Euler, L. (1738). 
De progressionibus transcendentibus seu quarum termini generales algebraice dari nequeunt. 
\emph{Commentarii academiae scientiarum Petropolitanae}. 36--57.

\end{thebibliography}

\end{document}

相关内容