I'm working with a Warsaw theme and smoothbars outtertheme.
I'm adding a bibliography entry at the end of the presentation that is meant to be used for a list of publications. However, these slides are not added to the circle progress bar (does this have a technical name?) from the smoothbars.
Checking the Beamer navigation circles without subsections? question I thought that adding some subsections will do the trick but that didn't work. It seems that if the frame contains a \printbibliography (and I guess any bibliography) then the frame is skipped from the progress bar. Also, I'm not sure if this has something to do with this bug.
Check the following example. The first frame appears by adding the subsection. The frames in the second subsection with the subsection in them appear also, with exception of the one with the bibliography on it.
\documentclass{beamer}
\begin{filecontents}{\jobname.bib}
@Book{test1,
author = {Goossens, Michel and Mittelbach,
Frank and Samarin, Alexander},
title = {The LaTeX Companion},
publisher = {Addison-Wesley},
location = {Reading, Mass.},
year = {1994},
}
\end{filecontents}
\useoutertheme[subsection=false]{smoothbars}
\usepackage{biblatex}
\bibliography{\jobname}
\begin{document}
\section{Section}
\subsection{Subsection}
\begin{frame}{test}
content...
\end{frame}
\section{Publications}
\subsection{Subsection}
\begin{frame}{in nav}
this frame is in navigation bar
\end{frame}
\subsection{References}
\begin{frame}
\nocite{*}
\printbibliography[heading=subbibliography]
\end{frame}
\subsection{Subsection}
\begin{frame}{in nav}
this frame is also in navigation bar, but the previous one isn't
\end{frame}
\end{document}
So, how can I make the slides with a bibliography on them to appear in the smoothbars/circle progress bar?
\printbibliography[heading=none]– Marco Daniel Apr 05 '13 at 09:51subbibliographyis doing something to the heading and that is avoiding the inclusion since it is a bibliography. Once you remove the heading, then it is not recognized as one any more, and the default behavior triggers. – adn Apr 05 '13 at 10:13