我想显示三个项目来评估每个项目的特征,然后选择其中一个,所以我需要先显示所有项目,然后我需要其中两个消失,或者至少变得透明。我该怎么做?
編輯:(由Sigur備輯)
这些答案确实很有帮助,但我有 3 个项目和 3 列中的多个子项目。方法 2 适用于子项目,但当我尝试将其用于项目时,tex 出现错误(missing } or \endgroup)
。
这是代码:
\begin{frame}
\frametitle{\LARGE{TITLE}}
% \vspace{4pt}
\begin{itemize}
\leftmarginii=0.8\leftmargini\relax
\begin{columns}[t]
\column{0.3\textwidth}
\item<1> Item1:
\begin{itemize}
\justifying
\vspace{4pt}
\item<1> \footnotesize{Subitem1}
\item<1> \footnotesize{Subitem2}
\end{itemize}
\column{0.3\textwidth}
\item<1-2> Item2:
\begin{itemize}
\justifying
\vspace{4pt}
\item<1-2> \footnotesize{Subitem1}
\item<1-2> \footnotesize{Subitem2}
\end{itemize}
\column{0.3\textwidth}
\item<1> Item3:
\begin{itemize}
\justifying
\vspace{4pt}
\item<1> \footnotesize{Subitem1}
\item<1> \footnotesize{Subitem2}
\end{itemize}
\end{columns}
\end{itemize}
\end{frame}
新代码:
\begin{frame}
\frametitle{\LARGE{Title}}
Antena para recepción APT
\noindent%
\begin{minipage}[t]{.27\textwidth}
\begin{itemize}
%\leftmarginii=0.8\leftmargini\relax
\item<1> Antena Yagi:
\begin{itemize}
%\justifying
\vspace{4pt}
\item<1>[\color{red}\ding{55}] \footnotesize{Requiere un sistema de seguimiento por ser directiva.}
\item<1>[\color{verde}\ding{51}] \footnotesize{Ganancia alta ($>$10 dB). Incrementable si se añaden más elementos.}
\item<1>[\color{red}{\ding{55}}] \footnotesize{Polarización lineal.}
\item<1>[\color{red}{\ding{55}}] \footnotesize{Gran tamaño y carga al viento.}
\end{itemize}
\end{itemize}
\end{minipage}
\begin{minipage}[t]{.29\textwidth}
\begin{itemize}
%\leftmarginii=0.8\leftmargini\relax
\item<1-2> Antena QHA:
\begin{itemize}
%\justifying
\vspace{4pt}
\item<1-2>[\color{verde}\ding{51}] \footnotesize{No se necesita un sistema de seguimiento al ser poco directiva.}
\item<1-2>[\color{red}{\ding{55}}] \footnotesize{Ganancia baja ($<$5 dB).}
\item<1-2>[\color{verde}\ding{51}] \footnotesize{Polarización circular.}
\item<1-2>[\color{verde}\ding{51}] \footnotesize{Anchura reducida.}
\end{itemize}
\end{itemize}
\end{minipage}
\begin{minipage}[t]{.29\textwidth}
\begin{itemize}
%\leftmarginii=0.8\leftmargini\relax
\item<1> Antena DCA:
\begin{itemize}
%\justifying
\vspace{4pt}
\item<1>[\color{verde}\ding{51}] \footnotesize{No se necesita un sistema de seguimiento al ser poco directiva.}
\item<1>[\color{red}{\ding{55}}] \footnotesize{Ganancia baja (Entre 4 y 6 dB).}
\end{itemize}
\end{itemize}
\end{minipage}
\end{frame}
答案1
只需指定想要显示内容的幻灯片即可。
方法 1:相对叠加规范
\documentclass{beamer}
\begin{document}
\begin{frame}
\begin{itemize}
\item<+> First
\item<.-+>Second
\item<+(-2)>Third
\end{itemize}
\end{frame}
\end{document}
+
beamer
增加用于跟踪事物的覆盖计数。.
指定当前幻灯片。n-m
指定一个范围,即幻灯片n
到(m
包括在内)。n
并且m
可以是数字(绝对规范,例如幻灯片1
或幻灯片3
)或的变体+
等.
(相对规范,例如这张幻灯片.
或下一张幻灯片+
)。+(n)
告诉beamer
增加计数并添加n
。n
可能是负数或正数。
因此,上述操作会增加计数,将第一项放在幻灯片上1
(与0
不会显示的相反);显示当前幻灯片中的第二项,即现在1
到下一张幻灯片2
;最后显示幻灯片上的第三项1
(因为将+
数字增加到,3
但(-2)
将其减少 2 和 3-2= 1
)。
方法 2:绝对叠加规范
对于简单的情况,通常只需beamer
直接告诉要使用哪些幻灯片,而不必担心相对规范。例如,以下内容与上述内容等效:
\documentclass{beamer}
\begin{document}
\begin{frame}
\begin{itemize}
\item<1> First
\item<1-2>Second
\item<1>Third
\end{itemize}
\end{frame}
\end{document}
透明度
如果您希望将覆盖的物品显示为透明,只需添加
\setbeamercovered{transparent}
在你的序言中。例如:
\documentclass{beamer}
\setbeamercovered{transparent}
\begin{document}
\begin{frame}
\begin{itemize}
\item<1> First
\item<1-2>Second
\item<1>Third
\end{itemize}
\end{frame}
\end{document}
答案2
这是一个简单的可行解决方案。如果您愿意,可以改进它。
\documentclass{beamer}
\begin{document}
\begin{frame}
\begin{itemize}
\item<1> Only at 1st slide
\item<1> Also only at 1st slide
\item<1-2> At 1st and 2nd slide
\end{itemize}
\end{frame}
\end{document}
编辑:
\begin{frame}
\noindent%
\begin{minipage}[t]{.3\linewidth}
\begin{itemize}
% \justifying
\vspace{4pt}
\item<1> \footnotesize{Subitem1}
\item<1> \footnotesize{Subitem2}
\end{itemize}
\end{minipage}
\begin{minipage}[t]{.3\linewidth}
\begin{itemize}
% \justifying
\vspace{4pt}
\item<1-2> \footnotesize{Subitem1}
\item<1-2> \footnotesize{Subitem2}
\end{itemize}
\end{minipage}
\begin{minipage}[t]{.3\linewidth}
\begin{itemize}
% \justifying
\vspace{4pt}
\item<1> \footnotesize{Subitem1}
\item<1> \footnotesize{Subitem2}
\end{itemize}
\end{minipage}
\end{frame}