我怎样才能改变 beamer 的 \tableofcontents[currentsection] 的阴影?

我怎样才能改变 beamer 的 \tableofcontents[currentsection] 的阴影?

我喜欢用\tableofcontents[currentsection]在开始新部分时使用它作为方向。但根据我的经验(取决于投影仪),其他部分的默认阴影可能是浅色。我该如何更改它?

梅威瑟:

\documentclass{beamer}

\begin{document}

\section{First Section}

\frame{
\frametitle{Title}
A frame of the first section
}

\section{Second Section}

\frame{
\frametitle{The shaded section is too light!}
\tableofcontents[currentsection]
}

\end{document}

答案1

您可以设置section in toc shaded模板;一种方法是将第二个可选参数(默认值 = 20)设置为更高的值(值为100则根本不显示阴影,条目看起来就像没有阴影的条目;值为零则显示完全透明的条目):

\documentclass{beamer}

\setbeamertemplate{section in toc shaded}[default][50]

\begin{document}

\section{First Section}

\frame{
\frametitle{Title}
A frame of the first section
}

\section{Second Section}

\frame{
\frametitle{The shaded section is not too light anymore!}
\tableofcontents[currentsection]
}

\end{document}

在此处输入图片描述

相关内容