
다음과 같이 float를 사용하여 카운터 장을 설정하려고 합니다.
\setcounter{chapter}{2.3}
이 오류가 발생합니다. alc 오류: `.' 현재로서는 유효하지 않습니다.
답변1
카운터는 정수 값만 허용하므로 다음을 시도해 보십시오.
\setcounter{chapter}{2}
\setcounter{section}{3}
\section{Your Headline} % This is section 2.4
또는
\setcounter{chapter}{2}
\setcounter{section}{2}
\section{Your Headline} % This is section 2.3