参考文献を1ページに表示する方法

参考文献を1ページに表示する方法

テキストをコンパイルすると、次のように表示されます。 ここに画像の説明を入力してください

参考文献のテキストを最初のページに結合したいのですが、どうすればいいでしょうか? コードは次のとおりです:

\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}{} で Bibliography のタイトルを 2 回記述していることだと思います。誰かが助けてくれることを願っています。

答え1

ドキュメントのプリアンブル(\documentclassとの間\begin{document})に次のコードを追加できます。

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

関連情報