計數器宣告初始化和列印到 pdf

可以使用帶乳膠的整數變數。要建立一個新變數,我們需要\newcounter{name} 命令,其中 name 是新計數器的名稱。name 必須只包含字母。此命令建立一個名為\thename 的新命令。使用此命令,我們可以在紙上列印 name 變數。name 的初始值為 0.為了給 name 賦值,我們可以使用\setcounter{name}{n},其中 n 是整數。\value{name} 是一個以 name 的值返回的函式。

\documentclass{article}
\begin{document}
\newcounter{num}                    %new counter, initial value is 0
\thenum                             %print 0
\setcounter{num}{3}                 %set num to 3
\thenum                             %print 3
\newcounter{number}
\setcounter{number}{\value{num}}    %set number to value of num
\thenumber                          %print 3

Latex provides some other formats to print a number.

Other types of printing:

\arabic{num}\\
\Roman{num}\\ %→ I, II, III, IV, . . . (num = 1, 2, 3, . . . )
\roman{num}\\ %→ i, ii, iii, iv, . . . (num = 1, 2, 3, . . . )
\Alph{num}\\  %→ A, B, C, D, . . . (num = 1, 2, 3, . . . , 26)
\alph{num}\\  %→ a, b, c, d, . . . (num = 1, 2, 3, . . . , 26)
\fnsymbol{num}\\ %→ ∗, †, ‡, §, ¶, k, ∗∗, ††, ‡‡ (num = 1, 2, 3, . . . , 9)
\end{document}

StackOverflow 文件