So basically I've got something like this at the top of my tex file:
\setbeamertemplate{footline}{Number \insertframenumber}
This applies "Number <#>" to the footer/footline of all frames. Now what I want to do is change the footline for one single frame. Surprisingly, the following doesn't work:
\begin{frame}
\setbeamertemplate{footline}{New template \insertframenumber}
\end{frame}
How do I achieve changing the footline/footer for one single frame?
\begin{frame}
? You'd have to change it back afterwards, or maybe it works if you put the entire thing between{
and}
. If not, leave a comment and I'll start experimenting. – Isomeric