LuaLaTeX and PSTricks \maketitle Conflict – How to Resolve

luatexpstricks

The command \maketitle leaves a blank page before the title with PSTricks when compiling via LuaLaTeX:

\documentclass{book}
\usepackage{pstricks}
\begin{document}
\title{My title}
\author{}
\maketitle
\end{document}

I've tried with TeX Live 2021 and MiKTeX up-to-date (1/02/2022).

Best Answer

Use

{\let\clearpage\relax\maketitle}

until it may be fixed.

Related Question