[Tex/LaTex] Enumerate with custom strings

#enumeratelists

I'm trying to get a list of custom labels. Here is what I've tried:

\begin{enumerate}[Exercise (1)]

\item first

\item second

\end{enumerate}

This results in each item being labeled as: Exerc#se (#)

Where # is the number of the item in the list. How can I make the "i" in exercise not be pattern matched?

Using a \ doesn't work, it causes syntax error.

Best Answer

As documented in the package documentation, letters inside {} are never taken as counter templates so

 [{Exercise }(1)]

should hide Exercise

Related Question