I was not sure where the topic belongs.
I face 2 problems in the following Beamer example:
- For the section "Table of contents" and "Introduction" circles representing each of the slides do not appear (only for the following ones), even when there are several.
- Furthermore the circles do not appear below the title of the section, and hence it can be misleading to know to which section they belong.
Code: Select all
\documentclass{beamer}
\usetheme{Warsaw}
\useoutertheme{smoothbars}
\useinnertheme{rectangles}
\usepackage{beamerthemeshadow}
\begin{document}
\section{Contents}
\begin{frame}{Table of contents}\tableofcontents
\end{frame}
\section{Introduction}
\include{IntroductionBeamer}
\section{Chapter 0}
\include{chap0Beamer}
\section{Chapter 1}
\include{chap1Beamer}
\section{Chapter 2}
\include{chap2Beamer}
\section{Chapter 3}
\include{chap3Beamer}
\end{document}