不要在新页面中开始参考书目

不要在新页面中开始参考书目

我正在使用thebibliography它来编制我的文本的参考书目。

以下是我所写的内容:

      \begin{thebibliography}{99}
      \addcontentsline{toc}{section}{Bibliografia}
      \bibitem{uno}...
      \end{thebibliography} 

我遇到了这个问题:我的参考书目从新页面开始,而我希望它位于文本末尾。我该怎么做?非常感谢您的帮助!

答案1

由于没有给出 MWE,因此这是一个快速猜测:负责 newpage 的命令是环境\chapter*{\bibname}定义中的thebibliography(最有可能使用book或类)。此命令根据类选项发出或。report\clearpage\cleardoublepage

我已经通过在使用 之前thebibliography放松来修补该命令。\clearpage\chapter*

\documentclass{book}
\usepackage[italian]{babel}

\usepackage{blindtext}%
\usepackage{etoolbox}%

\patchcmd{\thebibliography}{\chapter*}{\par\let\clearpage\relax\chapter*}{\typeout{success}}{\typeout{failure}}

\begin{document}
\tableofcontents
\chapter{First}%
\blindtext[10]
\begin{thebibliography}{99}
  \addcontentsline{toc}{section}{\bibname}
\bibitem{uno}...
\end{thebibliography} 
\end{document}

在此处输入图片描述

相关内容