![참고문헌을 한 페이지에 표시하는 방법](https://rvso.com/image/348627/%EC%B0%B8%EA%B3%A0%EB%AC%B8%ED%97%8C%EC%9D%84%20%ED%95%9C%20%ED%8E%98%EC%9D%B4%EC%A7%80%EC%97%90%20%ED%91%9C%EC%8B%9C%ED%95%98%EB%8A%94%20%EB%B0%A9%EB%B2%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}{}는 참고문헌 제목을 두 번 쓰는 것 같아요. 누군가 도와주셨으면 좋겠습니다..
답변1
문서의 서문(예: \documentclass
및 사이 \begin{document}
)에 다음을 추가할 수 있습니다.
\makeatletter
\let\thebibliography@ori\thebibliography
\renewcommand{\thebibliography}[1]{%
\renewcommand{\@schapter}[1]{\@chapter[##1]{##1}}\thebibliography@ori{#1}}
\makeatother