Shouldn't the following code
\documentclass{book}
\usepackage[absolute]{textpos}
\providecommand{\insertblankpage}[0]{ \newpage \leavevmode \thispagestyle{empty} \newpage }
\begin{document}
\begin{textblock}{4}[0,0](4.3,2.5)
\begin{center}
{\Large
Bla Bla\linebreak
some text
}
\end{center}
\end{textblock}
\insertblankpage
\end{document}
output a pdf (using XeLaTeX) with two pages? (one with some text and the other one blank).
Instead only one page is produced.
Why is that?