
thebibliography
내 텍스트의 참고문헌을 작성하기 위해 사용하고 있습니다 .
내가 쓴 내용은 다음과 같습니다.
\begin{thebibliography}{99}
\addcontentsline{toc}{section}{Bibliografia}
\bibitem{uno}...
\end{thebibliography}
이런 문제가 있습니다. 내 참고문헌은 새 페이지에서 시작하는데, 텍스트 끝 부분에만 두고 싶습니다. 어떻게 해야 하나요? 도움을 주셔서 감사합니다!
답변1
MWE가 제공되지 않으므로 이는 빠른 추측입니다. newpage에 대한 책임 명령은 환경 \chapter*{\bibname}
정의 내에 있습니다 thebibliography
(대부분 book
또는 report
클래스가 사용됨). 이 명령은 클래스 옵션에 따라 \clearpage
또는 를 실행합니다.\cleardoublepage
사용 직전에 thebibliography
휴식을 취하여 명령을 패치했습니다 .\clearpage
\chapter*
\documentclass{book}
\usepackage[italian]{babel}
\usepackage{blindtext}%
\usepackage{etoolbox}%
\patchcmd{\thebibliography}{\chapter*}{\par\let\clearpage\relax\chapter*}{\typeout{success}}{\typeout{failure}}
\begin{document}
\tableofcontents
\chapter{First}%
\blindtext[10]
\begin{thebibliography}{99}
\addcontentsline{toc}{section}{\bibname}
\bibitem{uno}...
\end{thebibliography}
\end{document}