在已经动画化的单元格(表格)中为字母制作动画

在已经动画化的单元格(表格)中为字母制作动画

我是新手beamer。我想在演示过程中让表格中的一些单元格(角落单元格)变成蓝色。然后我想让这些单元格中的一些字母变成绿色。有人能帮我编写这个代码吗?

非常感激你的帮助。

\documentclass[t,xcolor=table]{beamer}
\usepackage{lmodern}
\usepackage{hhline}
\usepackage{tikz}
\usetikzlibrary{positioning,automata} 


\newcommand<>{\mywordeee}[1]{%
    \alt#2{\textcolor{green}{{#1}}}{\widthofbold{#1}}}
\makeatother
\newcommand<>{\mycel}[1]{%
    \alt#2{\cellcolor{blue!25}{{#1}}}{\widthofbold{#1}}}
\makeatother  


\begin{document}

\begin{frame}
\begin{table}[H]
        \footnotesize\renewcommand{\arraystretch}{2}
        %\renewcommand{\arraystretch}{2}
        \tiny\begin{center}
            \begin{tabular}{|c|c|c|c|c|c|}\hline
                $\theta_2^5$ & \mycel<2>{ ($\mywordeee<2,3>{D},C$)} & ($D,C$) & ($D,C$) & ($C,C$), ($D,C$) & \mycel<2>{($C,C$)}   \\ \cline{1-6}
                $\theta_2^4$ & ($D,C$) & ($C,D$), ($D,C$)  & ($C,D$), ($D,C$)& ($C,D$), ($D,C$), ($C,C$)& ($C,C$), ($C,D$) \\ \cline{1-6}
                $\theta_2^3$ & ($D,C$) & ($C,D$), ($D,C$) & ($C,D$), ($D,C$) & ($C,D$), ($D,C$)& ($C,D$) \\ \cline{1-6}
                $\theta_2^2$ & ($D,D$), ($D,C$) & ($D,D$), ($D,C$), ($C,D$) & ($C,D$), ($D,C$)& ($C,D$), ($D,C$)& ($C,D$) \\\cline{1-6} 
                $\theta_2^1$ & \mycel<2>{($\mywordeee<2,3-4>{D},D$)} & ($D,D$), ($C,D$) & ($C,D$) & ($C,D$)& \mycel<2>{($C,D$)} \\ \hline 
                & $\theta_1^1$ & $\theta_1^2$ & $\theta_1^3$ & $\theta_1^4$ & $\theta_1^5$ \\ \hline  
            \end{tabular}
        \end{center}
        \end{table}


    \end{frame}

\end{document}

相关内容