答え1
とりわけ、ドキュメントの設定では、それぞれ「章」と「セクション」というラベルの付いたヘッダーを生成するためのディレクティブ\section
とが誤って使用されています。必然的に生じる混乱を減らすために、ドキュメント クラスに切り替えて、プリアンブルで命令を発行し、ディレクティブとを使用して対応するヘッダーを生成することをお勧めします。\subsection
report
\setcounter{secnumdepth}{-1}
\chapter
\section
\documentclass{report} % not 'article'
\setcounter{secnumdepth}{-1}
\begin{document}
\tableofcontents
\chapter{Chapter 5}
\section{Section 1}
\end{document}
目次と最初のヘッダーの間に改ページを入れたくない場合は、代わりに次のコードを使用します。
\documentclass{report} % not 'article'
\setcounter{secnumdepth}{-1}
\begin{document}
\tableofcontents
\begingroup
\let\clearpage\relax % locally disable '\clearpage'
\chapter{Chapter 5}
\endgroup
\section{Section 1}
\end{document}