I want this in the same frame, not a different frame. Here is an example of what I'd like:
\documentclass[mathserif]{beamer}
\usetheme{Copenhagen}
\usepackage{color,xcolor,ucs}
\usepackage{beamerthemesplit}
\usepackage{graphicx}
\usepackage{amsmath,amsfonts,amssymb,setspace,mathtools}
\begin{document}
\section{Introduction}
\frame{\frametitle{NPDE}
\begin{itemize}
\pause
\item item 1 here
\pause
\item item 2 here
\pause
\begin{equation*}
\frac{\partial u}{\partial t}= {\color{red}u(n,t)}u(n+1,t) -u(n,t)u(n-1,t)
\end{equation*}
%then I want this on the next click:
\pause
\begin{equation}
\notag
\frac{\partial u}{\partial t}=u(n,t){\color{red}u(n+1,t)}-u(n,t)u(n-1,t)
\end{equation}
\end{itemize}
}
\end{document}
Best Answer
You can use the
\only
overlay specification:And here are the fourth and fifth slides showing the relevant equation: