dan-weiss / apa7-latex-cls-source

Source code for apa7 class
LaTeX Project Public License v1.3c
49 stars 13 forks source link

Identation error in nested enumerate lists #60

Open alejandrorusso opened 6 months ago

alejandrorusso commented 6 months ago

This code

\documentclass[12pt, man, a4paper, fullpage, draftall, floatsintext]{apa7}
\begin{document}

\title{Title}
\authorsnames{A}
\authorsaffiliations{{B},{C}, {D}}

\maketitle

\begin{APAenumerate}
\item X  
\begin{APAenumerate}
  \item Y
\end{APAenumerate}
\item Z
\end{APAenumerate}
\end{document}

renders the enumerated lists as:

    1. X 
1. Y
   2. Z

So, the indentation is wrong as well as the numeration. A similar phenomenon occurs with APAitemize. See attached pdf for the output I am getting.

bug.pdf