Counters
Everything LaTeX numbers for you has a counter associated with it. The
name of the counter is the same as the name of the environment or
command that produces the number, except with no \
. (enumi -
enumiv are used for the nested enumerate environment.) Below is a list
of the counters used in LaTeX's standard document classes to control
numbering.
part paragraph figure enumi
chapter subparagraph table enumii
section page footnote enumiii
subsection equation mpfootnote enumiv
subsubsection
- \addtocounter: Add a quantity to a counter.
- \alph: Print value of a counter using letters.
- \arabic: Print value of a counter using numerals.
- \fnsymbol: Print value of a counter using symbols.
- \newcounter: Define a new counter.
- \refstepcounter: Add to counter, resetting subsidiary counters.
- \roman: Print value of a counter using roman numerals.
- \setcounter: Set the value of a counter.
- \stepcounter: Add to counter, resetting subsidiary counters.
- \usecounter: Use a specified counter in a list environment.
- \value: Use the value of a counter in an expression.
-->LaTeX index