1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
|
<html>
<head><title>Counters</title></head>
<body>
<h1>Counters</h1>
<P>
</P>
<P>
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 <CODE>\</CODE>. (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.
</P>
<PRE>
part paragraph figure enumi
chapter subparagraph table enumii
section page footnote enumiii
subsection equation mpfootnote enumiv
subsubsection
</PRE>
<UL>
<LI><A href="sec4.html">\addtocounter</A>: Add a quantity to a counter.
<LI><A href="sec5.html">\alph</A>: Print value of a counter using letters.
<LI><A href="sec6.html">\arabic</A>: Print value of a counter using numerals.
<LI><A href="sec7.html">\fnsymbol</A>: Print value of a counter using symbols.
<LI><A href="sec8.html">\newcounter</A>: Define a new counter.
<LI><A href="sec9.html">\refstepcounter</A>: Add to counter, resetting subsidiary counters.
<LI><A href="sec10.html">\roman</A>: Print value of a counter using roman numerals.
<LI><A href="sec12.html">\setcounter</A>: Set the value of a counter.
<LI><A href="sec11.html">\stepcounter</A>: Add to counter, resetting subsidiary counters.
<LI><A href="sec13.html">\usecounter</A>: Use a specified counter in a list environment.
<LI><A href="sec14.html">\value</A>: Use the value of a counter in an expression.
</UL>
<p>--><a href="index.html">LaTeX index</a>
</body>
</html>
|