如何讓參考書目出現在一頁中

如何讓參考書目出現在一頁中

編譯文字後,它顯示如下: 在此輸入影像描述

我想將參考書目文字合併到第一頁。怎麼做?我的程式碼是:

\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

相關內容