Possible Duplicate:
Beamer handout: Problem when creating border around frames
I am using pgfpages to create handouts. Here is my MWE:
\documentclass[11 pt, handout,xcolor=pdftex,x11names,table]{beamer}
\mode<beamer>{\usetheme{CambridgeUS}}
\usepackage{pgfpages}
\pgfpagesuselayout{2 on 1}[letterpaper,border shrink=10mm]
\pgfpageslogicalpageoptions{1}{border code=\pgfusepath{stroke}}
\pgfpageslogicalpageoptions{2}{border code=\pgfusepath{stroke}}
\begin{document}
\begin{frame}
\frametitle{First}
\begin{itemize}
\item check1
\item check 2
\end{itemize}
\end{frame}
\begin{frame}
Text 1
\end{frame}
\begin{frame}
Text 2
\end{frame}
\end{document}
As number of slides is odd, this code creates an empty box to fill the last page. I was wondering if there is a way to avoid this issue.