logo

LaTeX에서 챕터/섹션 번호 임의로 설정하는 방법 📂논문작성

LaTeX에서 챕터/섹션 번호 임의로 설정하는 방법

코드

LaTeX 코드 \setcounter{section}{n}는 현재의 섹션 번호를 $n$으로 설정한다. 섹션을 추가할 때 마다 해당 카운터가 1씩 증가하므로, 이 다음에 생성되는 섹션의 순서는 $n+1$이 된다.

        \documentclass{book}

\begin{document}

\chapter{Limits and Derivatives}
\section{Continuity}

\end{document}
        
        \documentclass{book}

\begin{document}

\setcounter{chapter}{1}
\chapter{Limits and Derivatives}
\setcounter{section}{4}
\section{Continuity}

\end{document}