I have a presentation where I have section and subsection headings that are displayed at the beginning of each section/subsection. I am trying to get these to be in two columns. I have managed to get the original TOC in two-column format, but the subsequent displays of TOC at section/subsection headings do not come out in two-column. I would appreciate some help
Another issue that I am noticing is that the two-columns on the first TOC are not aligned -- the second column is higher than the first. Cant' figure out why.
Here is a MWE:
\documentclass[table,xcolor=pdftex,dvipsnames]{beamer}
\usetheme{Madrid}
\usecolortheme{whale}
\beamertemplatenavigationsymbolsempty
\usepackage{multicol}
\AtBeginSection[]
{
\begin{frame}<beamer>
\frametitle{Outline}
\tableofcontents[
currentsection
]
\end{frame}
}
\AtBeginSubsection[]
{
\begin{frame}<beamer>
\frametitle{Outline}
\tableofcontents[
currentsection,currentsubsection
]
\end{frame}
}
\begin{document}
\section*{Outline}
\begin{frame}
\frametitle{Outline}
\begin{multicols}{2}
\tableofcontents
\end{multicols}
\end{frame}
\section{Introduction -- Graph Types}
\section{Property Graph Processing}
\subsection{Classification}
\subsection{Online querying}
\subsection{Offline analytics}
\section{Graph Analytics Approaches}
\subsection{MapReduce \& Variants}
\subsection{Classification of Native Approaches}
\section{Graph Analytics Systems}
\subsection{Vertex-Centric BSP}
\subsection{Vertex-Centric Asynchronous}
\subsection{Vertex-Centric GAS}
\subsection{Block-Centric BSP}
\subsection{Edge-Centric BSP}
\addtocontents{toc}{\newpage}
\section{OLAP-Style Analytics}
\subsection{Graph Summarization}
\subsection{Snapshot-based Aggregation}
\subsection{Graph Cube}
\subsection{Pagrol}
\subsection{Gagg Model}
\end{document}


