beamer 跨列暂停

beamer 跨列暂停

我当前的项目看起来像这样 在此处输入图片描述

但我希望右列始终位于幻灯片上,忽略\pause命令。我该怎么做

\begin{frame}{Encode the original information}
    \begin{columns}[T] % align columns
        \begin{column}{.48\textwidth}
            \begin{table}
                \begin{tabular}{|c|c|c|c|c|c|c|c|}
                    \hline
                    \textcolor{blue}{DB} & \textcolor{red}{00} & \textcolor{red}{00} & \textcolor{brown}{08} & \textcolor{orange}{F0} & \textcolor{cyan}{FF} & \textcolor{cyan}{FF} & \textcolor{cyan}{FF} \\
                    \hline
                \end{tabular}
                \pause
            \end{table}

            $\rightarrow$ \textcolor{blue}{100 }\textcolor{red}{101 101 }\textcolor{brown}{110} \textcolor{orange}{111} \textcolor{cyan}{0 0 0}
        \end{column}
        \begin{column}{.48\textwidth}

            \begin{table}
                \begin{tabular}{c|c}
                    \hline
                    $a_i$ & $c_i$ \\
                    \hline
                    FF    & 0     \\
                    DB    & 100   \\
                    00    & 101   \\
                    08    & 110   \\
                    F0    & 111   \\
                    \hline
                \end{tabular}
            \end{table}
        \end{column}
    \end{columns}
\end{frame}

答案1

您可以使用投影仪覆盖:

\documentclass{beamer}

\begin{document}
    
\begin{frame}{Encode the original information}
    \begin{columns}[T] % align columns
        \begin{column}{.48\textwidth}
            \begin{table}
                \begin{tabular}{|c|c|c|c|c|c|c|c|}
                    \hline
                    \textcolor{blue}{DB} & \textcolor{red}{00} & \textcolor{red}{00} & \textcolor{brown}{08} & \textcolor{orange}{F0} & \textcolor{cyan}{FF} & \textcolor{cyan}{FF} & \textcolor{cyan}{FF} \\
                    \hline
                \end{tabular}
            \end{table}

            \only<2->{$\rightarrow$ \textcolor{blue}{100 }\textcolor{red}{101 101 }\textcolor{brown}{110} \textcolor{orange}{111} \textcolor{cyan}{0 0 0}}
        \end{column}
        \begin{column}{.48\textwidth}

            \begin{table}
                \begin{tabular}{c|c}
                    \hline
                    $a_i$ & $c_i$ \\
                    \hline
                    FF    & 0     \\
                    DB    & 100   \\
                    00    & 101   \\
                    08    & 110   \\
                    F0    & 111   \\
                    \hline
                \end{tabular}
            \end{table}
        \end{column}
    \end{columns}
\end{frame}

    
\end{document}

在此处输入图片描述

相关内容