I would like to have a references slide at the end of my presentation where the slide is neither counted in the slide count nor counted as part of a section (which puts a circle in the header of the slide).
Not counting the reference slide in the slide count is taken care of using \appendix as in Don't count backup slides.
However, there is still a filled in circle in the header and it looks bad. How can I remove the circle? The solution in Beamer: Removing headline and its space on a single frame (for plan), but keeping the footline is too strong since it also removes the basic styling of the header and I want to only remove the section circle.
I would even be happy if the original headline with the list of sections persisted onto the appendix slide; I just think the one random circle in an otherwise blank headline looks awful.
Here is my code. It is probably helpful to note that I'm using a custom footline.
\documentclass{beamer}
\usetheme{Szeged}
\usepackage{appendixnumberbeamer}
\title{Title}
\author{Author}
%custom footline: adds author name in left, title in middle, pagecount in right
\setbeamertemplate{footline}
{%
\begin{beamercolorbox}[colsep=1.5pt]{upper separation line foot}
\end{beamercolorbox}
\hbox{%
\begin{beamercolorbox}[wd=0.333333\paperwidth, ht=2.5ex, dp=1.125ex, left]{title in head/foot}%
\hspace{1em} \usebeamerfont{author in head/foot}\insertshortauthor%~~\beamer@ifempty{\insertshortinstitute}{}{(\insertshortinstitute)}
\end{beamercolorbox}%
\begin{beamercolorbox}[wd=0.333333\paperwidth, ht=2.5ex, dp=1.125ex, center]{title in head/foot}%
\usebeamerfont{title in head/foot}\insertshorttitle
\end{beamercolorbox}%
\begin{beamercolorbox}[wd=0.333333\paperwidth, ht=2.5ex, dp=1.125ex, right]{title in head/foot}%
\usebeamerfont{title in head/foot}\insertframenumber/\inserttotalframenumber\hspace*{1em}
\end{beamercolorbox}}
\begin{beamercolorbox}[colsep=1.5pt]{lower separation line foot}
\end{beamercolorbox}
}
\begin{document}
\section{Section 1}
\begin{frame}{Frame 1}
Some content
\end{frame}
\appendix
\begin{frame}{References}
\end{frame}
\end{document}