3

I need an enumerate list that starts at c. instead of a.. Is this even possible? If so how do I do it?

I tried \begin{enumerate}[c. ] but that didn't work. I just got c. before each item.

Werner
  • 603,163
ryan
  • 381

2 Answers2

6

You can use start=3 with enumitem

\documentclass{article}
\usepackage{enumitem}

\begin{document}

\begin{enumerate}[label=\alph*.,start=3]
    \item first
    \item second
    \item third
\end{enumerate}

\end{document}

enter image description here

4

Use \addtocounter{enumi}{2}

\documentclass{article}
\usepackage{enumitem}

\begin{document}

\begin{enumerate}[label=\alph*. ]
    \addtocounter{enumi}{2}
    \item first
    \item second
    \item third
\end{enumerate}

\end{document}

enter image description here