[Tex/LaTex] Beamer headline too long

beamerheader-footer

When creating a beamer presentation in LaTeX, I have so many sections and frames, that the headline with the navigation bar is too long for the frame. Also, the table of contents is too long. I know that I can change the fontsize for the TOC, but is there a possibility to arrange the TOC in 2 (or more) columns? And is it possible to arrange the headline in more then 1 (say, 2) lines?

Working example:

\documentclass[ngerman]{beamer}
\usetheme{Frankfurt}
\begin{document}
\begin{frame} \tableofcontents[hideallsubsections] \end{frame}
\section{Abschnitt} \subsection{Abschnitt} \begin{frame} Abschnitt \end{frame}
\section{Abschnitt} \subsection{Abschnitt} \begin{frame} Abschnitt \end{frame}
\section{Abschnitt} \subsection{Abschnitt} \begin{frame} Abschnitt \end{frame}
\section{Abschnitt} \subsection{Abschnitt} \begin{frame} Abschnitt \end{frame}
\section{Abschnitt} \subsection{Abschnitt} \begin{frame} Abschnitt \end{frame}
\section{Abschnitt} \subsection{Abschnitt} \begin{frame} Abschnitt \end{frame}
\section{Abschnitt} \subsection{Abschnitt} \begin{frame} Abschnitt \end{frame}
\section{Abschnitt} \subsection{Abschnitt} \begin{frame} Abschnitt \end{frame}
\section{Abschnitt} \subsection{Abschnitt} \begin{frame} Abschnitt \end{frame}
\section{Abschnitt} \subsection{Abschnitt} \begin{frame} Abschnitt \end{frame}
\section{Abschnitt} \subsection{Abschnitt} \begin{frame} Abschnitt \end{frame}
\section{Abschnitt} \subsection{Abschnitt} \begin{frame} Abschnitt \end{frame}
\section{Abschnitt} \subsection{Abschnitt} \begin{frame} Abschnitt \end{frame}
\end{document}

EDIT: The first question has been solved, thx to samcarter. For the second question the code in the given link does not work for me. Since I am using the theme Frankfurt, I thought I had to exchange \progressbaroptions{headline=sections} by \Frankfurtoptions{headline=sections} but this does not work. If I leave away that line, no headline at all is shown.

Best Answer

Two column ToC:

The two column ToC can be done as I posted in this solution: https://tex.stackexchange.com/a/136082/36296

Multiline navigation bar

you can find some examples about a navigation bar with multiple lines for example in the following questions:

Separate Beamer navigation bar for some portions of presentation

Navigation bar is too long on progressbar theme, can it wrap?