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?
To completely remove footer, you need to also \setbeamertemplate{footline}{} .
The easiest way to remove it is to change the headline template. The line \setbeamertemplate{navigation symbols}{} is unrelated to the sections in the headline, this will remove the little symbols at the bottom right if the frame.
The \framebreak macro stands for \pagebreak<presentation> and inserts the frame/page break only in presentation mode but e.g. not in article or other modes. Use \pagebreak directly if you don't want that.
Thanks Thomas! For anyone else who might want to get this working, here's a complete example:
\documentclass{beamer} \setbeamertemplate{footline}{goo \insertframenumber} \begin{document} \begin{frame}[t]{Frame 1} A \end{frame} { % these braces make the change local to the single frame \setbeamertemplate{footline}{boo \insertframenumber} \begin{frame}[t]{Frame 2} B \end{frame} } \begin{frame}[t]{Frame 3} C \end{frame} \end{document}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With