![参考文献を1ページに表示する方法](https://rvso.com/image/348627/%E5%8F%82%E8%80%83%E6%96%87%E7%8C%AE%E3%82%921%E3%83%9A%E3%83%BC%E3%82%B8%E3%81%AB%E8%A1%A8%E7%A4%BA%E3%81%99%E3%82%8B%E6%96%B9%E6%B3%95.png)
参考文献のテキストを最初のページに結合したいのですが、どうすればいいでしょうか? コードは次のとおりです:
\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