Search found 2 matches

by theprinceway
Tue May 03, 2011 6:03 am
Forum: Document Classes
Topic: Caption numbering of Algorithm in beamer
Replies: 1
Views: 4664

Re: Caption numbering of Algorithm in beamer

put the following in the preamble

\resetcounteronoverlays{algorithm}
by theprinceway
Mon May 02, 2011 7:40 pm
Forum: Document Classes
Topic: Caption numbering of Algorithm in beamer
Replies: 1
Views: 4664

Caption numbering of Algorithm in beamer

Hello. I am using

\usepackage[section]{algorithm}
\usepackage{algorithmic}

\begin{frame}[fragile]
\begin{algorithm}[H]
\begin{algorithmic}[1]
\uncover<1->{\STATE $A \gets B$}
\uncover<2->{\STATE $C \gets D$}
\uncover<3->{\STATE $E \gets E$}
\end{algorithmic}
\end{algorithm}

\end{frame ...