Is there a way to change the title of the entire presentation in the navigation bar dynamically?
Now:
Needed:
All 6 of 6 circles should be shown in navigation bar, not only 3 of 6 for current section!
Here is my code:
\documentclass{beamer}
\usepackage[utf8]{inputenc}
\usepackage[ngerman]{babel}
\usepackage{ucs}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{graphicx}
\usepackage{color}
\usepackage{mathpazo}
\usepackage{tikz}
\usepackage{pgfplots}
\useoutertheme[subsection=false, shadow]{miniframes}
\useinnertheme{default}
\usefonttheme{serif}
\setbeamerfont{title like}{shape=\scshape}
\setbeamerfont{frametitle}{shape=\scshape}
\setbeamercolor*{lower separation line head}{bg=black!10}
\setbeamercolor*{normal text}{fg=black, bg=white}
\setbeamercolor*{alerted text}{fg=red}
\setbeamercolor*{example text}{fg=black}
\setbeamercolor*{structure}{fg=black}
\setbeamercolor*{palette tertiary}{fg=black, bg=black!5}
\setbeamercolor*{palette quaternary}{fg=black, bg=black!5}
\beamertemplatenavigationsymbolsempty
\begin{document}
% The miniframe circles should not be splitted in two groups (if possible)
\section*{Title 1} % <-- Only this title should be visible in the first section
\subsection*{}
\begin{frame}\end{frame}
\begin{frame}\end{frame}
\begin{frame}\end{frame}
\section*{Title 2} % <-- ...and only this title in the second section
\subsection*{}
\begin{frame}\end{frame}
\begin{frame}\end{frame}
\begin{frame}\end{frame}
\end{document}
The simple way to do so is probably to set the title of the presentation equal to subsection title — is this possible?


