投影機中的文獻綜述幻燈片

投影機中的文獻綜述幻燈片

我想創建一張投影機幻燈片,其中包含我的文獻綜述項目。但我找不到適合我的目的的良好且全面的表格或 tikz 圖表。有誰能夠幫助我?

答案1

\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}

在此輸入影像描述


反白顯示當前圓:

\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}

相關內容