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 46 47 48 49 50 51
|
<html>
<head><title>\newtheorem</title></head>
<body>
<h1>\newtheorem</h1>
<P>
</P>
<PRE>
\newtheorem{env_name}{caption}[within]
\newtheorem{env_name}[numbered_like]{caption}
</PRE>
<P>
This command defines a theorem-like environment.
</P>
<DL COMPACT>
<DT><CODE>env_name</CODE>
<DD>
The name of the environment to be defined. A string of letters. It must
not be the name of an existing environment or counter.
<DT><CODE>caption</CODE>
<DD>
The text printed at the beginning of the environment, right before the
number. This may simply say "Theorem", for example.
<DT><CODE>within</CODE>
<DD>
The name of an already defined counter, usually of a sectional unit.
Provides a means of resetting the new theorem counter <STRONG>within</STRONG>
the sectional unit.
<DT><CODE>numbered_like</CODE>
<DD>
The name of an already defined theorem-like environment.
</DL>
<P>
The <CODE>\newtheorem</CODE> command may have at most one optional argument.
</P>
<p>--><a href="index.html">LaTeX index</a>
</body>
</html>
|