\begin{description}
\item[Animals] Emus.
\item[Cars] Ferraris.
\end{description}
which would typeset into something like:
*1. Animals:* Emus.
*2. Cars:* Ferraris.
Preferably, I could set some of the styling, too: Here I am
indicating bold with surrounding '*' and a trailing ':' after the
definition list.
I guess I could redefine description to init a counter, and within its
definition, to redefine \item in a way that will add what I want. I
just wondered if some standard package is already defining this.
Pointers appreciated.
Regards, /iaw
\newcounter{description}
\renewcommand{\descriptionlabel}[1]{%
\refstepcounter{description}%
\hspace\labelsep
\normalfont\bfseries \thedescription. #1:}
\begin{document}
\begin{description}
\item[Animals] Emus.
\item[Cars] Ferraris.
\end{description}
\end{document}
Regards
Nicola Talbot
--
Home: http://theoval.cmp.uea.ac.uk/~nlct/
LaTeX Related Information: http://theoval.cmp.uea.ac.uk/~nlct/latex/