답변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}