I am working on a presentation with beamer.
I have the following code to splits the table of contents (several sections) on more slides, and it works very fine.
Issue is that a section includes a large number of subsections, and I am not able to split that portion of the table of contents over two or more pages. Instead, the list of titles gets written past below the botton of the slide (see Section C in the code below)
EDIT If I use allowframebreaks as suggested in a comment, entries for subsections are not rendered, but the extra ones for section C (those which go into the second Index II page)
\documentclass{beamer}
\mode<presentation>
\usepackage[italian]{babel}
\setbeamertemplate{navigation symbols}{}
\usetheme{Antibes}
\usecolortheme{seahorse}
\useoutertheme{tree}
\setbeamertemplate{footline}[frame number]
\usefonttheme{serif}
\begin{document}
\section{A}
\subsection{1}
\subsection{2}
\subsection{3}
\subsection{4}
\section{B}
\subsection{1}
\subsection{2}
\subsection{3}
\subsection{4}
\section{C}
\subsection{1}
\subsection{2}
\subsection{3}
\subsection{4}
\subsection{5}
\subsection{6}
\subsection{7}
\subsection{8}
\subsection{9}
\subsection{10}
\subsection{11}
\subsection{12}
\subsection{13}
\subsection{14}
\subsection{15}
\subsection{16}
\section{D}
\subsection{1}
\subsection{2}
\subsection{3}
\subsection{4}
\section{E}
\begin{frame}[t,allowframebreaks]
\frametitle{Index}
\tableofcontents[pausesections, pausesubsections,sections={-1}]
\end{frame}
\begin{frame}[t,noframenumbering,allowframebreaks]
\frametitle{Index}
\tableofcontents[pausesections, pausesubsections,sections={2-2}]
\end{frame}
\begin{frame}[t,noframenumbering,allowframebreaks]
\frametitle{Index}
\tableofcontents[pausesections, pausesubsections,sections={3-3}]
\end{frame}
\begin{frame}[t,noframenumbering,allowframebreaks]
\frametitle{Index}
\tableofcontents[pausesections, pausesubsections,sections={4-}]
\end{frame}
\end{document}
Note, .toc has entries from \beamer@subsectionintoc {3}{1} to \beamer@subsectionintoc {3}{16}, and I would like somethig like
\tableofcontents[pausesections, pausesubsections,sections={3-3}, **subsections={-7}**]

frameoptionallowframebreaksshould help to spread it over several slides .... – Zarko Aug 20 '23 at 23:23allowframebreaks, but it does not seem to work with the other options I have. – mario Aug 20 '23 at 23:55\begin{frame}[t,allowframebreaks] \frametitle{Index} \tableofcontents%[pausesections, pausesubsections] \end{frame}works fine. It is not entirely clear what you after. However, I would consider @cfr comments ... – Zarko Aug 21 '23 at 00:05