I'm preparing a guide for my students and I want to put a symbol before the item’s symbol in the enumeration of the exercises for indicate that this exercise is more difficult, very similar that the math's books.
For example:
blah
blah
(*)3. blah
I'm preparing a guide for my students and I want to put a symbol before the item’s symbol in the enumeration of the exercises for indicate that this exercise is more difficult, very similar that the math's books.
For example:
blah
blah
(*)3. blah
\begin{enumerate}
\item
Easy
\item
Easy
\item [(*)\stepcounter{enumi}\arabic{enumi}.]
Hard
\item
Easy
\end{enumerate}
You will probably want to use an optional argument of \item as a short definition, e.g.
\def\Hitem{\item [(*)\stepcounter{enumi}\arabic{enumi}.]} % Hard item.
\item[(*)3]. – Sigur May 21 '13 at 22:26