计数器声明初始化和打印到 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}