In a simple document when the last line of the last page is full, LaTeX will render a blank page before inserting the references. If the last page is not full, there is no blank page.
I think I haven't used anything special so I have no idea what this is and how to fix it.
Help please!
Full sample on Overleaf https://www.overleaf.com/read/gxwqhdvwkfnv
Command used for PDF generation: latexmk -pdf -xelatex
Code: Select all
\documentclass[a4paper,man,floatsintext,biblatex-apa,oneside]{apa6}
\usepackage[american]{babel}
\usepackage{csquotes}
\usepackage[style=apa,sortcites=true,sorting=nyt,backend=biber]{biblatex}
\usepackage[colorlinks,citecolor=blue,urlcolor=blue,linkcolor=blue]{hyperref}
\DeclareLanguageMapping{american}{american-apa}
\usepackage{fontspec}
\setmainfont{Times New Roman}
\addbibresource{a.bib}
\title{Title}
\shorttitle{shortTitle}
\author{Me}
\affiliation{Piglet}
\begin{document}
\maketitle
\parencite{vanmerrienboerTransferParadoxEffects1997} word word word
word word word word word word word word word word word word word word
... until the page fills up ...
word word word word word word word word word word word word word word
\printbibliography
\end{document}
