После компиляции текста он выглядит так:
Я хочу объединить текст Библиографии на первой странице. Как это сделать? Мой код:
\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{Библиография} и \begin{thebibliography}{} дважды пишут название Библиографии. Надеюсь, кто-то сможет помочь.
решение1
Вы можете добавить следующее в преамбулу вашего документа (т. е. между \documentclass
и \begin{document}
):
\makeatletter
\let\thebibliography@ori\thebibliography
\renewcommand{\thebibliography}[1]{%
\renewcommand{\@schapter}[1]{\@chapter[##1]{##1}}\thebibliography@ori{#1}}
\makeatother