Separe las subsecciones por comas en la tabla de contenido de beamer

Dec 21 2020

Estoy tratando de crear una tabla de contenido en presentaciones de beamer donde solo se muestran las subsecciones separadas por comas, pero no puedo encontrar una manera de lograrlo.

\documentclass{beamer}

\begin{document}

\begin{frame}{Content}{}
\tableofcontents
\end{frame}

%---------------------------    
\section{Section 1}
\subsection{Subsection 1.1}
\subsubsection{Subsubsection 1.1.1}

\begin{frame}{Section 1}{Subsection 1.1}    
Subsubsection 1.1.1    
\end{frame}    
%---------------------------------------    
\subsubsection{Subsubsection 1.1.2}    
\begin{frame}{Section 1}{Subsection 1.1}   
Subsubsection 1.1.2    
\end{frame}    
%---------------------------------------    
\subsubsection{Subsubsection 1.1.3}   
\begin{frame}{Section 1}{Subsection 1.1}    
Subsubsection 1.1.3    
\end{frame}

\end{document}

Lo que necesito producir es:

Section 1    
  Subsection 1.1    
    Subsubsection 1.1.1, Subsubsection 1.1.2, Subsubsection 1.1.3

en vez de:

Section 1    
  Subsection 1.1    
    Subsubsection 1.1.1    
    Subsubsection 1.1.2    
    Subsubsection 1.1.3

¡Muchas gracias por las sugerencias!

Respuestas

Lily Dec 21 2020 at 22:43

Estas opciones hicieron el trabajo:

\setbeamertemplate{subsection in toc}{\par\hspace*{2em}~\inserttocsubsection\par}
\setbeamertemplate{subsubsection in toc}{\hspace*{2.5em}{~\inserttocsubsubsection}}