目录中标题部分和小节之间的间距 (Beamer)

目录中标题部分和小节之间的间距 (Beamer)

有人知道如何增加目录中章节和子章节标题之间的间距吗?这是我当前的目录。

在此处输入图片描述

为了更清楚起见,我想要的是增加“文献综述”、“假设”等部分之间的空间……

感谢您的帮助。

答案1

作为一个快速技巧,你可以在模板前添加一些额外的空间subsection in toc

\documentclass{beamer}

\addtobeamertemplate{subsection in toc}{\vskip0.5cm}{}

\begin{document}

\begin{frame}
\tableofcontents
\end{frame}
    
\section{sec}
\begin{frame}
    abc
\end{frame} 

\subsection{sub a}
\begin{frame}
    abc
\end{frame} 

\subsection{sub b}
\begin{frame}
    abc
\end{frame} 
    
\end{document}

相关内容