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
|
<html>
<head><title>list</title></head>
<body>
<h1>list</h1>
<P>
</P>
<P>
The <CODE>list</CODE> environment is a generic environment which is used for
defining many of the more specific environments. It is seldom used in
documents, but often in macros.
</P>
<PRE>
\begin{list}{label}{spacing}
\item First item
\item Second item
.
.
.
\end{list}
</PRE>
<P>
The <CODE>{label}</CODE> argument specifies how items should be labelled.
This argument is a piece of text that is inserted in a box to form the
label. This argument can and usually does contain other LaTeX commands.
</P>
<P>
The <CODE>{spacing}</CODE> argument contains commands to change the spacing
parameters for the list. This argument will most often be null, i.e.,
<CODE>{}</CODE>. This will select all default spacing which should suffice
for most cases.
</P>
<p>--><a href="index.html">LaTeX index</a>
</body>
</html>
|