I am somewhat new to Latex in that I used it 5 years ago. I never used minipage but I am trying to use it now. I went through some previous posts and found one example using a figure next to some equation. Anyway, the code was very similar to mine, I tried to apply it, although no changes were really needed. I will post my simplified code below. The code outputs a list up to item 3, but that is it, no enumerated split page. It should create a split page a and b. By the way is "enumerate" obsolete, I saw something on this site that said as much, under "obsolete packages and document classes". As I digress, here is the code.
Code: Select all
\documentstyle[12pt]{article}
\begin{document}
\begin{enumerate}
\item The first item.
\item The second item.
\item The third item is an enumerated minipage.
\begin{enumerate}
\begin{minipage}[b][60mm]
\item Item a
\end{minipage}
\begin{minipage}[b][60mm]
\item Item b
\end{minipage}
\end{enumerate}
\end{enumerate}
\end{document}