slide de revisão de literatura no beamer

slide de revisão de literatura no beamer

Quero criar um slider que consiste em meus itens de revisão de literatura. mas não consigo encontrar uma tabela ou gráfico tikz bom e abrangente que seja adequado aos meus propósitos. Alguém pode me ajudar?

Responder1

\documentclass{beamer}

\usepackage{tikz}

\begin{document}

\begin{frame}

\begin{columns}[onlytextwidth]
    \begin{column}{.15\textwidth}
        \begin{tikzpicture}
        \node[fill=blue!40!white,circle,text width=1cm,align=center] {first text};
        \end{tikzpicture}
        \begin{tikzpicture}
        \node[fill=red!40!white,circle,text width=1cm,align=center] {first text};
        \end{tikzpicture}       
        \begin{tikzpicture}
        \node[fill=orange!40!white,circle,text width=1cm,align=center] {first text};
        \end{tikzpicture}       
    \end{column}
    \begin{onlyenv}<1>
        \begin{column}{.2\textwidth}
            \includegraphics[width=\textwidth]{example-image-a}
        \end{column}
        \begin{column}{.6\textwidth}
            text 1
        \end{column}    
    \end{onlyenv}
    \begin{onlyenv}<2>
        \begin{column}{.2\textwidth}
            \includegraphics[width=\textwidth]{example-image-b}
        \end{column}
        \begin{column}{.6\textwidth}
            text 2
        \end{column}    
    \end{onlyenv}   
    \begin{onlyenv}<3>
        \begin{column}{.2\textwidth}
            \includegraphics[width=\textwidth]{example-image-c}
        \end{column}
        \begin{column}{.6\textwidth}
            text 3
        \end{column}    
    \end{onlyenv}
\end{columns}

\end{frame}

\end{document}

insira a descrição da imagem aqui


Destacando o círculo atual:

\documentclass{beamer}

\usepackage{tikz}

\tikzset{onslide/.code args={<#1>#2}{%
  \only<#1>{\pgfkeysalso{#2}} % \pgfkeysalso doesn't change the path
}}

\begin{document}

\begin{frame}

\begin{columns}[onlytextwidth]
    \begin{column}{.15\textwidth}
        \begin{tikzpicture}
        \node[onslide=<1>{fill=blue!40},onslide=<2->{fill=blue!5},circle,text width=1cm,align=center] {first text};
        \end{tikzpicture}
        \begin{tikzpicture}
        \node[onslide=<2>{fill=red!40},onslide=<1>{fill=red!5},onslide=<3>{fill=red!5},circle,text width=1cm,align=center] {first text};
        \end{tikzpicture}       
        \begin{tikzpicture}
        \node[onslide=<3>{fill=orange!40},onslide=<-2>{fill=orange!5},circle,text width=1cm,align=center] {first text};
        \end{tikzpicture}       
    \end{column}
    \begin{onlyenv}<1>
        \begin{column}{.2\textwidth}
            \includegraphics[width=\textwidth]{example-image-a}
        \end{column}
        \begin{column}{.6\textwidth}
            text 1
        \end{column}    
    \end{onlyenv}
    \begin{onlyenv}<2>
        \begin{column}{.2\textwidth}
            \includegraphics[width=\textwidth]{example-image-b}
        \end{column}
        \begin{column}{.6\textwidth}
            text 2
        \end{column}    
    \end{onlyenv}   
    \begin{onlyenv}<3>
        \begin{column}{.2\textwidth}
            \includegraphics[width=\textwidth]{example-image-c}
        \end{column}
        \begin{column}{.6\textwidth}
            text 3
        \end{column}    
    \end{onlyenv}
\end{columns}

\end{frame}

\end{document}

informação relacionada