我通过 minipage 将一个框架并排分成两部分。第一部分有 6 个项目,第二部分有 7 个项目(图像)(请看下文)。
\begin{frame}
\frametitle{Preliminaries}
\setbeamercolor{normal text}{fg=blue,bg=}
\setbeamercolor{alerted text}{fg=magenta,bg=}
\usebeamercolor{normal text}
\noindent
\begin{minipage}[t]{0.58\linewidth}
\begin{enumerate}
\item \alert<+>{some text here}
\item \alert<+>{some text here}
\item\alert<+>{some text here}
\item\alert<+>{some text here}
\item \alert<+>{some text here}
\item \alert<+>{some text here}
\end{enumerate}
\end{minipage}
\begin{minipage}[t]{0.35\linewidth}
\vspace*{0.25in}
\begin{center}
\includegraphics<1>[scale=0.5]{image1}
\includegraphics<2>[scale=0.5]{image2}
\includegraphics<3>[scale=0.5]{image3}
\includegraphics<4>[scale=0.5]{image4}
\vspace*{-0.3in}
\includegraphics<5>[scale=0.35]{image5}
\includegraphics<6>[scale=0.35]{image6}
\includegraphics<7>[scale=0.35]{image7}
\end{center}
\end{minipage}
\end{frame}
现在的问题是,在显示第二部分中的前两个图像时,如何保持(突出显示)第一部分中第一个项目的颜色?当我显示第三张图像时,第一部分中的第二个项目应该突出显示,但第一个项目不应突出显示,依此类推。我该怎么做?
答案1
使用\alert<1-2>
、、\alert<3>
等\alert<4>
代替\alert<+>
。
\documentclass{beamer}
\setbeamertemplate{navigation symbols}{} % never seen anyone using these
\begin{document}
\begin{frame}{Preliminaries}
\setbeamercolor{normal text}{fg=blue,bg=}
\setbeamercolor{alerted text}{fg=magenta,bg=}
\usebeamercolor{normal text}
\begin{columns}
\begin{column}[t]{0.58\linewidth}
\begin{enumerate}
\item \alert<1-2>{some text here}
\item \alert<3>{some text here}
\item \alert<4>{some text here}
\item \alert<5>{some text here}
\item \alert<6>{some text here}
\item \alert<7>{some text here}
\end{enumerate}
\end{column}
\begin{column}[t]{0.35\linewidth}
\begin{center}
\includegraphics<1>[scale=0.2]{example-image}
\includegraphics<2>[scale=0.2]{example-image-a}
\includegraphics<3>[scale=0.2]{example-image-b}
\includegraphics<4>[scale=0.2]{example-image-c}
\includegraphics<5>[scale=0.2]{example-image-a}
\includegraphics<6>[scale=0.2]{example-image-b}
\includegraphics<7>[scale=0.2]{example-image-c}
\end{center}
\end{column}
\end{columns}
\end{frame}
\end{document}