Document Classesbeamer | Customization of Navigation Symbols

Information and discussion about specific document classes and how to create your own document classes.
Post Reply
anson
Posts: 6
Joined: Fri Feb 13, 2009 1:13 am

beamer | Customization of Navigation Symbols

Post by anson »

I hope there are some folks not opposed to helping me out with a Beamer question. I use the Frankfurt theme (a spinoff of Berlin) religiously because of its simple layout and navigation symbols. The problem I have is the navigation dots are running together, so I am wondering how to customize the position of the navigation dots. Specifically, how do I push the dots to a new line after some x number of subsections? In this example, how would I get the fourth dot under the Damn Dots section to go below the first dot?

Code: Select all

\documentclass[11pt,pslatex,mathserif,slidestop]{beamer}
\usetheme{Frankfurt}
\usepackage[T1]{fontenc}
\usepackage{natbib}
\usepackage{bibentry}
\usepackage{graphicx,color,amsmath,amssymb,booktabs,dcolumn,epstopdf,hyperref,verbatim,subfigure}
\usepackage{times}

\setbeamertemplate{navigation symbols}{}
\setbeamertemplate{theorem}[ams style]
\setbeamertemplate{theorems}[numbered]
\newtheorem{proposition}{Proposition}

\title{An Example}
\author{ A Presenter}
\date{\today}

\begin{document}
\rmfamily

\frame{\titlepage}

\section{Damn Dots}
\subsection{One}
\begin{frame}{}{}
  \begin{itemize}
    \item
    \item
  \end{itemize}
\end{frame}


\subsection{Two}
\begin{frame}{}{}
  \begin{itemize}
    \item
    \item
  \end{itemize}
\end{frame}

\subsection{Three}
\begin{frame}{}{}
  \begin{itemize}
    \item
    \item
  \end{itemize}
\end{frame}

\subsection{Four}
\begin{frame}{}{}
  \begin{itemize}
    \item
    \item
  \end{itemize}
\end{frame}
\end{document}
Thank you for your help, I greatly appreciate it.

Recommended reading 2024:

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

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

tosandip
Posts: 1
Joined: Mon Sep 05, 2011 6:53 am

Re: beamer | Customization of Navigation Symbols

Post by tosandip »

I am also searching for a solution to the same problem. Was wondering did you happen to get the solution?
Post Reply