I am preparing a presentation with beamer using the following preamble:
\documentclass{beamer}
\usepackage{remreset}
\usepackage{comment} % end and begin comment
\usepackage{dtklogos} % for \BibTeX
\makeatletter
\@removefromreset{subsection}{section} % creates navigation circles for every slide not section
\makeatother
\setcounter{subsection}{1} % creates navigation circles for every slide not section
\usetheme{Frankfurt}
\setbeamercovered{transparent}
For every page (note respective lines in preamble) I get a navigation circle in the header of the document. Unfortunately these circles disappear in my quite extensive Appendix. How do I get the circles to also show up in the Appendix (I start the appendix with the \appendix command)?


\appendixcommand "All frames, all \subsection commands, and all \section commands used after this command will not be shown as part of the normal navigation bars." So what you see is its normal behaviour. – Ignasi Jun 7 '12 at 7:39\appendixin your code. This way all sections, subsections and frames will be regular sections, subsections and frames and will appear in your navigation bar. The not so easy way: redefine '\appendix` command. I don't know how to do it. – Ignasi Jun 7 '12 at 14:56