[Tex/LaTex] Italics in the enumerate environment

#enumerateformattinglists

I want to use italics in the enumerate environment. I want to have the following output:

(a)  Text1
(b)  Text2
(c)  Text3

I am using:

\begin{enumerate}[(a)] \end{enumerate}

How do I change this to get the desired results?

Best Answer

Since you seem to be using the enumerate package, you can just add \itshape to your enumeration:

\begin{enumerate}[\itshape(a)]
Related Question