to. 18. januar 2007 17:29 skreiv John Yamokoski: > Greetings everyone, > > I was wondering if someone could tell me how to do the following: I > want to add some custom text to an enumerated list so that it comes > out looking something like: > > Outcome 1. First item. > Outcome 2. Second item. > Outcome 3. Third item.
Hi If you want a list with Outcome before the number in the list, that is not difficult and the answer is given here: http://tug.org/TeXnik/mainFAQ.cgi?file=list/enumLabel or for the lazy ;) add \renewcommand\labelenumi{Outcome \arabic{enumi}.} to your preamble. and you get Outcome 1. your text Outcome 2. your text etc. To get LaTeX to automagically add "first item" and "second item" etc spelled out is more tricky... Ingar
