I have the following code which works for counting pages:
\setbeamertemplate{navigation symbols}{
\usebeamercolor[fg]{title}
\hspace{1em}
\large\insertframenumber/\inserttotalframenumber
}
added to the preamble.
I was wondering if I could add something so that when I cycle through a single frame it counts that too for example I would like the following to show:
1a/1 , 1b/1 , 1c/1 instead of 1/1 for all frames.
\documentclass[demo]{beamer}
\setbeamertemplate{navigation symbols}{
\usebeamercolor[fg]{title}
\hspace{1em}
\large\insertframenumber/\inserttotalframenumber
}
\begin{document}
\begin{frame}{Title}
\begin{itemize}
\item<1-> stuff
\item<2-> stuff
\item<3-> stuff
\end{itemize}
\end{frame}
\end{document}
