如何在参考书目开始之前避免分页?

5 latex

我正在为我的硕士论文写一篇博文.揭露中的一点是文献概述.为了节省我的时间和工作,我使用bibtex来创建那一章.我现在要改变的是,乳胶开始了一个新的参考书目页面,这是一个四页文档的巨大开销.

我认为,我的文件中的相关部分是:

\documentclass [ fontsize = 12pt,
                 paper = a4,
                 paper = portrait,
                 twoside = false,
                 headsepline,
                 twocolumn = false,
                 numbers=noenddot
                ]{scrartcl}

\bibliographystyle{unsrt}

\begin{document}
%
    \include{text}
    \nocite{*}
    \singlespacing
    \bibliography{literature}
%
\end{document}
Run Code Online (Sandbox Code Playgroud)

小智 10

我正在使用biblatex.这解决了这个问题:

\begingroup
\let\clearpage\relax
\printbibliography
\endgroup
Run Code Online (Sandbox Code Playgroud)