我喜欢用\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}