I need an enumerated list that starts with (iii) instead of (i). Is there a way to do this?
I've tried the suggestions from a previous question but I still don't know how to do it.
Thank you in advance.
I need an enumerated list that starts with (iii) instead of (i). Is there a way to do this?
I've tried the suggestions from a previous question but I still don't know how to do it.
Thank you in advance.
With enumitem package,
\documentclass{article}
\usepackage{enumitem}
\begin{document}
Default style
\begin{enumerate}
\item first
\item second
\end{enumerate}
Roman numbering starting with three
\begin{enumerate}[label=\roman*., start=3]
\item first
\item second
\end{enumerate}
Configured format of item label
\begin{enumerate}[label=(\roman*), start=3]
\item first
\item second
\end{enumerate}
\end{document}