When I use beamer with \includeonlyframes{someframe}, the resulting PDF has the same pdftitle as the overall document. Is there any way to set the pdftitle to the title of the someframe, the only frame I am including?
\documentclass{beamer}
\includeonlyframes{frametwo}
\title{Document title}
\begin{document}%
\begin{frame}[label=frameone]{Frame one}
Spam
\end{frame}
\begin{frame}[label=frametwo]{Frame two}
Eggs
\end{frame}
\end{document}
Running pdflatex mini results in a PDF with title Document title. Is there any way to get the title of the only frame that is compiled?
