I try to achieve the following: have a background image on a frame and disable the frame to appear in the navigation bullets at the same time. I can do both but not at the same time.
If commenting out \begingroup... and \endgroup, the image is shown, but the frame is in the navigation bullets, else the image is not seen.
I also tried to change the place of the group and the curly braces around the frame.
A strange thing is that when I comment out the group delimiters, running pdflatex first will give a good result, but after a new compilation it's wrong:
\documentclass{beamer}
\usetheme{Berlin}
\begin{document}
\section{Sec1}
\begin{frame}
Fr1
\end{frame}
{\setbeamertemplate{headline}{\vskip\headheight}
\setbeamertemplate{footline}{}
\usebackgroundtemplate{%
\includegraphics[height=\paperheight]{example-image}
}
\begingroup\makeatletter\let\beamer@writeslidentry\relax
\begin{frame}
This frame should not appear among the navigation bullets and the background image should be seen
\end{frame}
\endgroup
}
\end{document}
With group delimiters:
With commenting out group delimiters:




