[Tex/LaTex] labels for itemize in proposition

#enumeratecross-referencingitemizelists

I have a Proposition which consists of an itemize with three claims, i.e.

\begin{prop}
\begin{itemize}
\item[(i)] ...
\item[(ii)] ...
\item[(iii)] ...
\end{itemize}
\end{prop}

I wish to insert labels and references in such a way to get things like

"…due to Proposition 4.1 (ii)…" or similar. How can I do? Should I use enumerate instead of itemize? Thanks.

Best Answer

You could use the enumitem package, with which you could write:

\begin{Proposition}
   It is long known that
  \begin{enumerate}[label=\roman(*)]
   \item all numbers are interesting, but
   \item some numbers are more interesting than others.
  \end{enumerate}
\end{Proposition}
Related Question