I am writing a beamer presentation and I want to show a circle for each frame on the navigation sidebar. Can this be done? Here's a MWE:
\documentclass{beamer}
% Set Theme
\usetheme{Marburg}
\usecolortheme{beaver}
% Set sections in sidebar color
\makeatletter{}
\setbeamercolor{section in sidebar}{fg=yellow}
\setbeamercolor{section in sidebar shaded}{fg=white}
\setbeamercolor{title in sidebar}{fg=yellow}
\setbeamertemplate{section in toc}[sections numbered]
\setbeamertemplate{section in sidebar right}[sections numbered]
\makeatother{}
\begin{document}
\begin{frame}{Outline}
\tableofcontents
\end{frame}
\section{sec1}
\begin{frame}{frame1.1}
blah, blah, blah
\end{frame}
\begin{frame}{frame1.2}
blah, blah, blah
\end{frame}
\section{sec2}
\begin{frame}{frame2.1}
blah, blah, blah
\end{frame}
\begin{frame}{frame2.2}
blah, blah, blah
\end{frame}
\end{document}
any ideas?
