I want a beamer TOC slide like this:
SECTION 1
..Subsection 1
......Slide Title 1
..Subsection 2
......Slide Title 2
......Slide Title 2
NEXT SECTION
......Another Slide Title
In documents I use \paragraph to get the next level in on the TOC, but it does not seem to be supported in beamer. =(
It'd be best if the slidetitles get included in the TOC automatically (kind of like this: Beamer: how to make each frame appear in the PDF toc? ) But I'd be OK with changing the \slidetitle command to also put in a \paragraph command.
Here is some (possibly orthogonal) working code:
\documentclass{beamer}
\usepackage[latin1]{inputenc}
\usetheme{Antibes}
\begin{document}
\section{Section 1}
\subsection{Subsection 1}
\begin{frame}
\frametitle{Outline}
\tableofcontents
\end{frame}
\begin{frame}
\frametitle{Slide 1}
This is some content
\end{frame}
\end{document}

\documentclass{...}and ending with\end{document}– Jun 27 '14 at 11:30paragraphinstead ofsubsubsection? If you put a subsubsection before every frame you will get the result you want. Not a automatically way, but it works! :) – Smarzaro Nov 14 '14 at 23:34