I am trying to print out page number/total number of pages in the handout that I get from this code: This 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}
\end{document}
I'd like to modify the code in a way that I can add (ideally) header and footer (OR at least page #/# of pages) in the right bottum corner. Is it possible?

