thanks a lot for your suggestion, it's pretty close. Let me clarify what I'm looking for.
I want to have an _enumerate_ list where some items will be preceded by one star, others by two stars, etc. but I need to retain the ability to specify how many stars to be assigned to each individual item -- the 1 2 3 pattern apparent in my example was a fluke. How can I do something like:
* 1. This is an easy question
*** 2. This is an impossible question
* 3. This is an easy question
** 4. This is a difficult question
*** 5. This is an impossible question
** 6. This is a difficult question
** 7. This is a difficult question
* 8. This is an easy question
I guess I would need to have a _label_ inside each _item_ to specify how many stars are to be assigned to it, then the _enumerate_ environment would need to be told how to print the content of the _label_ next to the standard _enumerate_ _label_, perhaps something along the lines of:
Code: Select all
\begin{enumerate}[\label \labelenumi]
\item \label{**} This is a difficult question
\item \label{*} This is an easy question
\item \label{***} This is an impossible question
\end{enumerate}