我想通过在枚举环境中列出各个部分并在不同的幻灯片上突出显示每个部分来概述我的演示文稿:
\begin{enumerate}
\item<alert@2> Section A
\item<alert@3> Section B
\item<alert@4> Section C
\item<alert@5> Section D
\end{enumerate}
这样,正常文本颜色为黑色,但我希望它(未发出警报时)为灰色。枚举\textcolor{grey}{}
周围的块不会改变任何内容,而每个项目的此块也会将警报颜色更改为灰色。
我很乐意听取任何建议。
答案1
您无法\textcolor{}
环绕enumerate
环境,但您可以将其放置\color{gray}
在后面\begin{enumerate}
以将此颜色应用于此环境内项目的所有文本:
\documentclass{beamer}
\begin{document}
\begin{frame}{Title}
\begin{enumerate} \color{gray}
\item<alert@2> Section A
\item<alert@3> Section B
\item<alert@4> Section C
\item<alert@5> Section D
\end{enumerate}
\end{frame}
\end{document}