首页上的全局计数器

首页上的全局计数器

是否可以有一个全局计数器,可在第一页显示其值?据我所知,唯一的方法是在编译后显示在最后一页。

答案1

虽然我已经指出了可能重复的问题,但没有必要使用@egreg提供的答案。这是一个简单的例子:

\documentclass{article}
\newcounter{aecounter}
\def\trial{\stepcounter{aecounter}}
\providecommand\aemytotal{ZILCH}

\makeatletter
\AtEndDocument{\write\@auxout{\noexpand\global\noexpand\def\noexpand\aemytotal{\number\value{aecounter}}}}
\makeatother

\begin{document}

Total is \aemytotal

\trial
\trial
\trial
this

\pagebreak

that
\trial
\trial
\trial

\pagebreak

\trial
\trial
\trial

those

\end{document}

相关内容