Işınlayıcı içindekiler tablosunda alt bölümleri virgülle ayırın

Dec 21 2020

Projeksiyon sunumlarında yalnızca alt bölümlerin virgülle ayrılmış olarak gösterildiği ancak bunu başarmanın bir yolunu bulamadığım bir içerik tablosu oluşturmaya çalışıyorum.

\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}

Üretmem gereken şey:

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

onun yerine:

Section 1    
  Subsection 1.1    
    Subsubsection 1.1.1    
    Subsubsection 1.1.2    
    Subsubsection 1.1.3

Önerileriniz için çok teşekkürler!

Yanıtlar

Lily Dec 21 2020 at 22:43

Bu seçenekler işi yaptı:

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