Page Layoutbeamer | Circles Header do not match Titles

Information and discussion about page layout specific issues (e.g. header and footer lines, page formats, page numbers).
Post Reply
vicenprice
Posts: 1
Joined: Thu Jan 05, 2012 12:49 pm

beamer | Circles Header do not match Titles

Post by vicenprice »

Dear all,

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.
A minimal example should be this one:

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}
Thanks

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

crdafisica
Posts: 10
Joined: Thu Jun 26, 2008 4:25 am

beamer | Circles Header do not match Titles

Post by crdafisica »

Hi,

I dont know if this is the answer you are looking for but the pages with sections will be created only if you make a frame. Look at the below code.
Keep in mind that sometimes the pdf viewer redirects the section link on the ToC to the bottom (or the top) of the correct page leading you to think that the link is incorrect when you are using the windowed view. In the full screen mode it should work just fine.

Regards.

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}
\begin{frame}{}
	frame
\end{frame}
\section{Chapter 0}
\include{chap0Beamer}
\begin{frame}{}
	frame
\end{frame}
\section{Chapter 1}
\include{chap1Beamer}
\begin{frame}{}
	frame
\end{frame}
\section{Chapter 2}
\include{chap2Beamer}
\begin{frame}{}
	frame
\end{frame}
\section{Chapter 3}
\include{chap3Beamer}
\begin{frame}{}
	frame
\end{frame}

\end{document}
Post Reply