summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/generic/FAQ-en/html/FAQ-enumerate.html
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/doc/generic/FAQ-en/html/FAQ-enumerate.html')
-rw-r--r--Master/texmf-dist/doc/generic/FAQ-en/html/FAQ-enumerate.html89
1 files changed, 0 insertions, 89 deletions
diff --git a/Master/texmf-dist/doc/generic/FAQ-en/html/FAQ-enumerate.html b/Master/texmf-dist/doc/generic/FAQ-en/html/FAQ-enumerate.html
deleted file mode 100644
index 0ee1a38ad03..00000000000
--- a/Master/texmf-dist/doc/generic/FAQ-en/html/FAQ-enumerate.html
+++ /dev/null
@@ -1,89 +0,0 @@
-<head>
-<title>UK TeX FAQ -- question label enumerate</title>
-</head><body>
-<h3>Fancy enumeration lists</h3>
-<p/>The <i>enumerate</i> package allows you to control the display of
-the enumeration counter. The package adds an optional parameter to
-the <code>enumerate</code> environment, which is used to specify the
-layout of the labels. The layout parameter contains an enumeration
-type (&#8216;<code>1</code>&#8217; for arabic numerals, &#8216;<code>a</code>&#8217; or &#8216;<code>A</code>&#8217;
-for alphabetic enumeration, and &#8216;<code>i</code>&#8217; or &#8216;<code>I</code>&#8217; for Roman
-numerals), and things to act as decoration of the enumeration. So,
-for example
-<blockquote>
-<pre>
-\usepackage{enumerate}
-...
-\begin{enumerate}[(a)]
-\item ... ...
-\end{enumerate}
-</pre>
-</blockquote><p>
-starts a list whose labels run (a), (b), (c), &#8230;; while
-<blockquote>
-<pre>
-\usepackage{enumerate}
-...
-\begin{enumerate}[I/]
-\item ... ...
-\end{enumerate}
-</pre>
-</blockquote><p>
-starts a list whose labels run I/, II/, III/, &#8230;
-<p/>The <i>paralist</i> package, whose primary purpose is
-<a href="FAQ-complist.html">compaction of lists</a>, provides the same facilities
-for its <code>enumerate</code>-like environments.
-<p/>If you need non-stereotyped designs, the <i>enumitem</i> package
-gives you most of the flexibility you might want to design your own.
-The silly roman example above could be achieved by:
-<blockquote>
-<pre>
-\usepackage{enumitem}
-...
-\begin{enumerate}[label=\Roman{*}/]
-\item ... ...
-\end{enumerate}
-</pre>
-</blockquote><p>
-Note that the &#8216;<code>*</code>&#8217; in the key value stands for the list
-counter at this level. You can also manipulate the format of
-references to list item labels:
-<blockquote>
-
-<pre>
-\usepackage{enumitem}
-...
-\begin{enumerate}[label=\Roman{*}/, ref=(\roman{*})]
-\item ... ...
-\end{enumerate}
-</pre>
-</blockquote><p>
-to make references to the list items format appear as (i), (ii),
-(iii), etc.
-<p/>The <i>memoir</i> class includes functions that match those in the
-<i>enumerate</i> package, and has similar functionality for
-<code>itemize</code> lists.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-<dl>
-<dt><tt><i>enumerate.sty</i></tt><dd>Distributed as part of <a href="http://mirror.ctan.org/macros/latex/required/tools.zip">macros/latex/required/tools</a> (or <a href="http://mirror.ctan.org/macros/latex/required/tools/">browse the directory</a>); <a href="http://mirror.ctan.org/help/Catalogue/entries/enumerate.html">catalogue entry</a>
-<dt><tt><i>enumitem.sty</i></tt><dd><a href="http://mirror.ctan.org/macros/latex/contrib/enumitem.zip">macros/latex/contrib/enumitem</a> (or <a href="http://mirror.ctan.org/macros/latex/contrib/enumitem/">browse the directory</a>); <a href="http://mirror.ctan.org/help/Catalogue/entries/enumitem.html">catalogue entry</a>
-<dt><tt><i>memoir.cls</i></tt><dd><a href="http://mirror.ctan.org/macros/latex/contrib/memoir.zip">macros/latex/contrib/memoir</a> (or <a href="http://mirror.ctan.org/macros/latex/contrib/memoir/">browse the directory</a>); <a href="http://mirror.ctan.org/help/Catalogue/entries/memoir.html">catalogue entry</a>
-<dt><tt><i>paralist.sty</i></tt><dd><a href="http://mirror.ctan.org/macros/latex/contrib/paralist.zip">macros/latex/contrib/paralist</a> (or <a href="http://mirror.ctan.org/macros/latex/contrib/paralist/">browse the directory</a>); <a href="http://mirror.ctan.org/help/Catalogue/entries/paralist.html">catalogue entry</a>
-</dl>
-<p/><p>This question on the Web: <a href="http://www.tex.ac.uk/cgi-bin/texfaq2html?label=enumerate">http://www.tex.ac.uk/cgi-bin/texfaq2html?label=enumerate</a>
-</body>