The following code
\documentclass{scrartcl}
\usepackage[-6,nonofiles]{pagesel}
\usepackage{lipsum}
%\usepackage{pgfgantt}
\begin{document}
\lipsum[1-100]
\end{document}
works fine, but if you comment out the fourth line the PDF produced includes a blank page for each discarded page. Any solution/explanation to this problem?
A fix is to place \usepackage{pgfgantt} before \usepackage[-6,nonofiles]{pagesel}, but still some explanation would be welcome.
pgfganttto find any incompatibility. – Werner May 30 '14 at 13:52pgfganttloadstikz(of PGF). And I know PGF has the ability to overlay elements onto the page - something that is done during the shipout routine. My guess ispagesel's use ofeveryshishould be inserted beforetikzgets a change to modify this output routine, causing the incompatibility. – Werner May 30 '14 at 16:08