暂停 beamer 类中的表的一列

暂停 beamer 类中的表的一列

我在课堂上用过这个‎\usetheme{PaloAlto}文件作为演示文件beamer。我有一些问题。是否可以暂停表格的某一列,例如最后一列?是否可以暂停矩阵的某一列?

提前致谢。

‎\documentclass{beamer}‎
\usepackage[utf8x]{inputenc}
‎\usetheme{PaloAlto}
\usecolortheme{seahorse}‎‎‎
‎\setbeamercovered{transparent}‎
‎‎\usepackage{amsmath,amsthm,amssymb}‎ 


‎\begin{document}‎

\begin{frame}
\maketitle
\end{frame}
‎\begin{frame}‎
  ‎\frametitle{Outline}‎
  ‎\tableofcontents‎
  % ‎You might wish to add the option [pausesections]‎

‎\end{frame}‎

‎\section{Basic definitions}‎

\subsection{Definitions and examples}‎
‎\begin{frame}‎
 ‎\begin{example}‎‎
 \begin{table}[htp]\centering‎
\caption{ ‎$2^{3}$ Full Factorial Design}‎‎‎
‎\begin{tabular}{ccc|c}‎
 ‎&{factors} &&Response variable‎‎\\ \hline‎
‎$A$&$B$&$C$&‎$‎\mathbf{y}‎$‎\\ \hline‎
 ‎$-1$ & $-1$ & $-1$  &‎$‎y_{1}‎$‎\\‎ 
  ‎$\phantom{{-}}1$ &  $-1$ &  $-1$ &‎$‎y_{2}‎$   \\‎ 
‎$-1$ &  $\phantom{{-}}1$ &  $-1$&‎$‎y_{3}‎$    \\‎ 
 ‎$\phantom{{-}}1$ &  $\phantom{{-}}1$ &  $-1$&‎$‎y_{4}‎$ \\‎
‎$-1$ &  $-1$ &  $\phantom{{-}}1$&‎$‎y_{5}‎$
‎\end{tabular}‎
‎\end{table}‎
 \end{example}

‎\end{frame}‎
\begin{frame}
\begin{equation}‎

\label{U9}‎
‎U_{9}=‎
‎\left[‎
‎\begin{array}{lllllllll}‎
-‎1&     \phantom{{-}}1&     \phantom{{-}}1&‎    -‎1&‎    -‎1&     \phantom{{-}}1&‎    -‎1&     \phantom{{-}}1&‎    -‎1\\‎
     ‎\phantom{{-}}1&‎    -‎1&     \phantom{{-}}1&     \phantom{{-}}1&‎    -‎1&‎    -‎1&‎    -‎1&‎    -‎1&     \phantom{{-}}1\\‎
     ‎\phantom{{-}}1&     \phantom{{-}}1&‎    -‎1&‎    -‎1&     \phantom{{-}}1&‎    -‎1&     \phantom{{-}}1&‎    -‎1&‎    -‎1\\‎
    -‎1&     \phantom{{-}}1&‎    -‎1&‎    -‎1&     \phantom{{-}}1&     \phantom{{-}}1&‎    -‎1&‎    -‎1&     \phantom{{-}}1\\‎
    -‎1&‎    -‎1&     \phantom{{-}}1&     \phantom{{-}}1&‎    -‎1&     \phantom{{-}}1&     \phantom{{-}}1&‎    -‎1&‎    -‎1
\end{array}‎
‎\right]‎.
‎\end{equation}}‎

‎‎\end{frame}‎
\end{document}‎

答案1

您可以使用 暂停某一列>{\onslide<2->}c<{\onslide}

另请注意

  • beamer 没有浮点数,因此在表中添加浮点说明符没有意义。
  • \centering是多余的,表格在 beamer 中默认居中。
  • 如果你只是右对齐你的单元格,你不需要所有的\phantom{-}

\documentclass{beamer}
\usepackage{array}

\begin{document}

\begin{frame}

\begin{table}
\caption{$2^{3}$ Full Factorial Design}
\begin{tabular}{rrr|>{\onslide<2->}c<{\onslide}}
\multicolumn{3}{c}{factors} & Response variable\\ \hline
$A$&$B$&$C$&$\mathbf{y}$\\ \hline
$-1$ & $-1$ & $-1$  &$y_{1}$\\ 
$1$ &  $-1$ & $-1$ &$y_{2}$   \\ 
$-1$ & $1$ & $-1$&$y_{3}$    \\ 
$1$ &  $1$ & $-1$&$y_{4}$ \\
$-1$ & $-1$ & $1$&$y_{5}$\\
$1$ &  $-1$ & $1$ & $y_{6}$\\
$-1$ & $1$ & $1$&$y_{7}$\\
$1$ &  $1$ &  $1$&$y_{8}$\\
\end{tabular}
\end{table}

\end{frame}

\end{document}

在此处输入图片描述


或者反过来:

\documentclass{beamer}
\usepackage{array}

\begin{document}

\begin{frame}

\begin{table}
\caption{$2^{3}$ Full Factorial Design}
\begin{tabular}{rrr|>{\onslide<1>}c<{\onslide}}
\multicolumn{3}{c}{factors} & Response variable\\ \hline
$A$&$B$&$C$&$\mathbf{y}$\\ \hline
$-1$ & $-1$ & $-1$  &$y_{1}$\\ 
$1$ &  $-1$ & $-1$ &$y_{2}$   \\ 
$-1$ & $1$ & $-1$&$y_{3}$    \\ 
$1$ &  $1$ & $-1$&$y_{4}$ \\
$-1$ & $-1$ & $1$&$y_{5}$\\
$1$ &  $-1$ & $1$ & $y_{6}$\\
$-1$ & $1$ & $1$&$y_{7}$\\
$1$ &  $1$ &  $1$&$y_{8}$\\
\end{tabular}
\pause
\end{table}

\end{frame}

\end{document}

相关内容