참고문헌을 한 페이지에 표시하는 방법

참고문헌을 한 페이지에 표시하는 방법

텍스트를 컴파일하면 다음과 같이 표시됩니다. 여기에 이미지 설명을 입력하세요

참고문헌의 텍스트를 첫 페이지에 결합하고 싶습니다. 그렇게하는 방법? 내 코드는 다음과 같습니다

\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

관련 정보