Beamer \tableofcontents[currentsection] 正在对子部分进行阴影处理

Beamer \tableofcontents[currentsection] 正在对子部分进行阴影处理

我在用

\AtBeginSection[] {
    \begin{frame}<beamer>
        \frametitle{A continuación}
        \tableofcontents[currentsection]
    \end{frame}
}

我有部分、子部分和子子部分。我收到的输出是

在此处输入图片描述

我希望子子部分具有与子部分相同的行为。

答案1

\documentclass{beamer}

\AtBeginSection[] {
    \begin{frame}<beamer>
        \frametitle{A continuación}
        \tableofcontents[currentsection,subsubsectionstyle=show/show/
show/shaded]
    \end{frame}
}


\begin{document}

\section{title}
\subsection{title}
\subsubsection{title}   
\begin{frame}
    abc
\end{frame} 

\section{title}
\subsection{title}
\subsubsection{title}   
\begin{frame}
    abc
\end{frame} 

\end{document}

在此处输入图片描述

相关内容