Como fazer o pgfonlayer funcionar corretamente dentro do onslide?

Como fazer o pgfonlayer funcionar corretamente dentro do onslide?

Estou tentando usar o onslide para agrupar diferentes elementos da imagem e controlar quando e por quanto tempo eles aparecem no slide. Ao mesmo tempo, estou tentando usar o pgfonlayer para garantir que algumas coisas sejam desenhadas "por baixo" de outras para garantir a oclusão correta.

Acho que eles deveriam ser completamente independentes um do outro, mas estou descobrindo que quando coloco elementos no ambiente pgfonlayer (que fica dentro do onslide), parece colocar todos os itens na mesma camada de fundo do pgf em algo equivalente ao onslide <1->. Quase como se o pgfonlayer cancelasse o efeito do onslide.

Para ser mais preciso, posso ter algo assim (este é um esboço do problema - A,B,C,D são gráficos reais, não apenas letras):

\onslide<1>{
B
\begin{pgfonlayer}{bg}
A % A should be occluded by B
\end{pgfonlayer}
}

\onslide<2>{
D
\begin{pgfonlayer}{bg}
C % C should be occluded by D
\end{pgfonlayer}
}

e obtenho o efeito de que A e C estão sempre visíveis.

Existe uma maneira fácil de corrigir isso? Qualquer ajuda seria muito apreciada.

Obrigado,

Ambrósio

obs. Aqui está um exemplo de código-fonte completo:

\documentclass[10pt]{beamer}
\title{onslide vs pgfonlayer}
\author[My Team]{My Name}
\date{\today}
\usepackage{tikz}
\begin{document}

\begin{frame}[t]
  \frametitle{First using pgfonlayer only -- works.}

  On this first slide the light colors are on top, even though they are
  drawn before the darker colors.  {\bf pgfonlayer} is used to achieve
  this.

  \pgfdeclarelayer{bg}
  \pgfsetlayers{bg,main}

  \begin{figure}
    \begin{tikzpicture}
      \draw[fill=blue!10] (0,1) circle (1cm);
      \begin{pgfonlayer}{bg}
        \draw[fill=blue] (0,0) circle (1cm);
      \end{pgfonlayer}
      \draw[fill=red!10] (3,1) circle (1cm);
      \begin{pgfonlayer}{bg}
        \draw[fill=red] (3,0) circle (1cm);
      \end{pgfonlayer}
    \end{tikzpicture}
  \end{figure}

\end{frame}


\begin{frame}[t]
  \frametitle{Next, adding onslide -- fails.}
  On this second slide I attempt to use {\bf onslide} to show only one
  side at a time.  First the blues then the reds.
  \pgfdeclarelayer{bg}
  \pgfsetlayers{bg,main}

  \begin{figure}
    \begin{tikzpicture}
      \onslide<1>{
        \draw[fill=blue!10] (0,1) circle (1cm);
        \begin{pgfonlayer}{bg}
          \draw[fill=blue] (0,0) circle (1cm);
        \end{pgfonlayer}
      }
      \onslide<2>{
        \draw[fill=red!10] (3,1) circle (1cm);
        \begin{pgfonlayer}{bg}
          \draw[fill=red] (3,0) circle (1cm);
        \end{pgfonlayer}
      }

    \end{tikzpicture}
  \end{figure}

  First we see light blue with both dark colors, ...\pause and then we
  see light red with both dark colors.  It seems that because I put the
  darker colors into the bg layer, the onslide groupings I put around
  each basic color do not work

\end{frame}
\end{document}

Responder1

Você está certo: o pgfonlayerambiente cancela o efeito do \onslide!

Uma solução alternativa:

\documentclass[10pt]{beamer}
\usepackage{tikz}
\begin{document}
\begin{frame}[t]
  \frametitle{pgfonlayer and onslide...}
  \pgfdeclarelayer{bg}
  \pgfsetlayers{bg,main}
  \begin{figure}
    \begin{tikzpicture}
      \onslide<1>{
        \draw[fill=blue!10] (0,1) circle (1cm);
        \begin{pgfonlayer}{bg}
          \onslide<1>{
            \draw[fill=blue] (0,0) circle (1cm);
          }
        \end{pgfonlayer}
      }
      \onslide<2>{
        \draw[fill=red!10] (3,1) circle (1cm);
        \begin{pgfonlayer}{bg}
          \onslide<2>{
            \draw[fill=red] (3,0) circle (1cm);
          }
        \end{pgfonlayer}
      }
    \end{tikzpicture}
  \end{figure}
\end{frame}
\end{document}

insira a descrição da imagem aqui

Responder2

Acho que este é um daqueles casos em que beamero TikZ se comunica mal. A solução mais fácil é adicionar especificações de sobreposição específicas aos drawcomandos da backgroundcamada, o que torna a especificação de sobreposição \only(se não me engano). Portanto, é deliberadamente instruído a remover o que aconteceu naquele slide, ao contrário de \onslide.

Eu recomendo fortemente o uso da backgroundsbiblioteca TikZ, que é adaptada apenas para esta tarefa. Não sei exatamente tudo o que ele faz, mas é melhor deixar o TikZ fazer as camadas se estivermos interessados ​​apenas no plano de fundo.

\documentclass[10pt]{beamer}
\title{onslide vs pgfonlayer}
\author[My Team]{My Name}
\date{\today}
\usepackage{tikz}
\usetikzlibrary{backgrounds}
\begin{document}

\begin{frame}[t]{First using pgfonlayer only -- works.}

  On this first slide the light colors are on top, even though they are
  drawn before the darker colors.  \textbf{pgfonlayer} is used to achieve
  this.


  \begin{figure}
    \begin{tikzpicture}
      \draw[fill=blue!10] (0,1) circle (1cm);
    \begin{scope}[on background layer]  
    \draw[fill=blue] (0,0) circle (1cm);
    \end{scope}
      \draw[fill=red!10] (3,1) circle (1cm);
        \begin{scope}[on background layer] 
      \draw[fill=red] (3,0) circle (1cm);
        \end{scope}
    \end{tikzpicture}
  \end{figure}

\end{frame}


\begin{frame}[t]{Next, adding onslide -- fails.}
    On this second slide the light colors are on top, even though they are
  drawn before the darker colors.  \textbf{pgfonlayer} is used to achieve
  this.

  \begin{figure}
    \begin{tikzpicture}
      \onslide<1>{
        \draw[fill=blue!10] (0,1) circle (1cm);
        \begin{scope}[on background layer] 
        \draw<1>[fill=blue] (0,0) circle (1cm);
        \end{scope}
      }
      \onslide<2>{
        \draw[fill=red!10] (3,1) circle (1cm);
        \begin{scope}[on background layer] 
        \draw<2>[fill=red] (3,0) circle (1cm);
        \end{scope}
      }

    \end{tikzpicture}
  \end{figure}

  First \pause and second
\end{frame}
\end{document}

insira a descrição da imagem aqui

Um pequeno detalhe: \bfestá obsoleto, use \textbfpara tal uso.

informação relacionada