When trying to compile my .tex file using the latexmk -latex=xelatex command, I receive the following error:
! Bad space factor (0).
<recently read> \@savsf
l.39 \end{seriate}
?
Then, if I press return, the compilation process resumes with no apparent negative outcome. The output is just correct. I don't see why I get this, but the error doesn't let me streamline the compilation process.
MWE:
\documentclass[english,man]{apa6}
\usepackage[american]{babel}
\usepackage{csquotes}
\usepackage[style=apa,sortcites=true,sorting=nyt,natbib=true,backend=biber]{biblatex}
\DeclareLanguageMapping{american}{american-apa}
\usepackage{graphics}
\usepackage{fontspec}
\setmainfont[Ligatures=TeX]{Times New Roman}
\setsansfont[Ligatures=TeX]{Times New Roman}
\setmonofont{Times New Roman}
\begin{document}
\begin{seriate}
\item a scientific experiment,
\item the presence of an
\end{seriate}
\end{document}