Hello,
A really nice feature for PGF Pages would be to be able to specify the first page as a right page. This is useful when printing books using the book layout, or any other layout where left and right layout differs.
Here is an example:
\documentclass[paper=a4,openany]{scrbook}
\usepackage{lipsum}
\usepackage{pgfpages}
\pgfpagesuselayout{2 on 1}[a4paper,landscape]
\begin{document}
\title{This is a front page, a \emph{right page}}
\author{Author}
\date{\today}
\maketitle
\chapter{Right Page}
\lipsum[2]
\chapter{Left page}
\lipsum[2]
\end{document}
Left pages are printed on the right side of the paper and vice versa.
Thanks,
Rasmus