最后一章编号

最后一章编号

有没有类似通过该包实现的方法lastpage来获取最后一章的编号?然后我想使用这些信息来设计章节标题。

答案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}

相关内容