Package: latex-beamer
Version: 3.10-1
Severity: normal

When using a theme with a footer, if I create a slide which uses \pause
within a TikZ picture to create an incrementally overlaid diagram, the
footer will disappear on all but the last sub-slide.  This doesn't
happen when using \pause outside of a TikZ picture, nor does it happen
when using full overlay specifications in a TikZ picture.

I've attached a minimal test case.

- Josh Triplett

-- System Information:
Debian Release: wheezy/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'stable'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 3.2.0-1-amd64 (SMP w/4 CPU cores)
Locale: LANG=C.UTF-8, LC_CTYPE=C.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages latex-beamer depends on:
ii  latex-xcolor        2.11-1
ii  pgf                 2.10-1
ii  texlive-latex-base  2009-15

latex-beamer recommends no packages.

latex-beamer suggests no packages.

-- no debconf information
\documentclass{beamer}
\usepackage{tikz}

\usetheme{Madrid}
\beamertemplatenavigationsymbolsempty

\title{The case of the missing footer}
\subtitle{A minimal test case}
\author{Josh Triplett}
\date{February 11, 2012}

\begin{document}
\maketitle

\begin{frame}{Overlays with overlay specifications}
  \begin{itemize}
    \item<1-> Footer appears as expected
    \item<2-> On both pages
  \end{itemize}
\end{frame}

\begin{frame}{Overlays with pause}
  \begin{itemize}
    \item Footer appears as expected
\pause
    \item On both pages
  \end{itemize}
\end{frame}

\begin{frame}{Overlays in TikZ with overlay specifications on node}
  \begin{tikzpicture}
    \node<1-> at (0,0) {Footer appears as expected};
    \node<2-> at (0,-1) {On both pages};
  \end{tikzpicture}
\end{frame}

\begin{frame}{Overlays in TikZ with overlay specifications around node}
  \begin{tikzpicture}
    \visible<1->{\node at (0,0) {Footer appears as expected};}
    \visible<2->{\node at (0,-1) {On both pages};}
  \end{tikzpicture}
\end{frame}

\begin{frame}{Overlays in TikZ with pause}
  \begin{tikzpicture}
    \node at (0,0) {No footer on this page};
\pause
    \node at (0,-1) {Only on this page};
  \end{tikzpicture}
\end{frame}

\end{document}

Reply via email to