[Tex/LaTex] How to list items like this: (i), (ii), (iii) etc

#enumeratelists

If you have mathematic theorems that have more than one conclusion how do you list them this way:

(i) First conclusion here

(ii) Second conclusion here

(iii) Third conclusion here

effectively? I do it manually but it doesn't look good. Enumerate doesn't work either.

Best Answer

Use enumitem package

\documentclass{article}
\usepackage{enumitem}   

\begin{document}
\begin{enumerate}[label=(\roman*)]
\item First item
\item Second item
\item Third item
\end{enumerate}
\end{document}

example screenshot

Another solution is to use the enumerate package:

\documentclass{article}
\usepackage{enumerate}   

\begin{document}
\begin{enumerate}[(i)]
\item First item
\item Second item
\item Third item
\end{enumerate}
\end{document}

See daleif answer to learn more about advantages of enumitem over enumerate.

Note that if you're using the beamer class, you don't need to load any extra package (the enumerate package is actually automatically loaded):

\documentclass{beamer}

\begin{document}
\begin{frame}
\begin{enumerate}[(i)]
\item First item
\item Second item
\item Third item
\end{enumerate}
\end{frame}
\end{document}

enter image description here

As mentioned is the comments, enumitem is not compatible with the beamer class unless you use the [shortlabels] option, as explained here: Possible incompatibility with enumitem

Related Question