When writing lists, sometimes I need to make lists within lists:
\documentclass{apa}
\begin{document}
\begin{enumerate}
\item This is an item.
\begin{enumerate}
\item This is another item.
\end{enumerate}
\end{enumerate}
\end{document}
With the APA document class, this seems to produce a list with "1. 1.", but the second item is not deeper. How can I make a nested list?
