如何让参考书目出现在一页中

如何让参考书目出现在一页中

我编译文本后,它显示如下: 在此处输入图片描述

我想将参考书目文本合并到第一页。怎么做?我的代码是:

\chapter{Bibliography}
\begin{thebibliography}{}
\bibitem{latexcompanion} 
Wellner, P. (1993). Interacting with paper on the DigitalDesk. Communications of the ACM, 36(7), pp.87-96. 

我认为问题在于 \chapter{Bibliography} 和 \begin{thebibliography}{} 写了两次书目的标题。希望有人能帮忙。

答案1

您可以在文档的序言中(即\documentclass和之间\begin{document})添加以下内容:

\makeatletter
\let\thebibliography@ori\thebibliography
\renewcommand{\thebibliography}[1]{%
   \renewcommand{\@schapter}[1]{\@chapter[##1]{##1}}\thebibliography@ori{#1}}
\makeatother

相关内容