lastpage
Last Chapter 번호를 얻기 위해 패키지 에서 달성한 것과 유사한 방법이 있습니까 ? 그런 다음 이 정보를 사용하여 장 제목을 디자인하고 싶습니다.
답변1
옵션은 다음과 같습니다.totcount
패키지:
\documentclass{book}
\usepackage{totcount}
\regtotcounter{chapter}
\begin{document}
This document has~\total{chapter} chapters.
\chapter{Test}
\chapter{Test}
\chapter{Test}
\chapter{Test}
\chapter{Test}
\end{document}
패키지가 없는 옵션은 다음과 같습니다.
\documentclass{book}
\newcounter{totchap}
\providecommand\totchap{}
\makeatletter
\AtEndDocument{%
\setcounter{totchap}{\value{chapter}}%
\immediate\write\@mainaux{%
\string\gdef\string\totchap{\number\value{totchap}}%
}%
}
\makeatother
\begin{document}
This document has~\totchap\ chapters.
\chapter{Test}
\chapter{Test}
\chapter{Test}
\chapter{Test}
\chapter{Test}
\end{document}