动画页面上的 Beamer 笔记

动画页面上的 Beamer 笔记

我有动画幻灯片,我想生成注释以配合它们。不幸的是,我得到的注释是帧中最后一个动画之后的注释,而不是每个动画的注释。我想在每个动画之后立即获得一个注释页。有办法吗?

另外,有没有办法让注释也动起来,让它们紧跟在相关帧之后?如附图所示,我只得到了注释中的前两项,而没有得到其余的。

以下是 MWE 和输出。

\documentclass[table,xcolor=pdftex,usenames,dvipsnames,aspectratio=149, 11.5pt]{beamer}
\usetheme{Madrid}
\usecolortheme{lily}

\setbeameroption{show notes}
\setbeamertemplate{note page}{\pagecolor{yellow!5}\insertnote}\usepackage{palatino}

\usepackage{tikz}

\begin{document}
\begin{frame}[t]
    \frametitle{Graphs have become ubiquitous}
    
    \uncover<1->{\includegraphics[scale=0.2]{graph-market.jpg}}
    
    %\vspace{1cm}
    
    \uncover<2->{
        \vspace{-2.2in}
        \centering
        \includegraphics[scale=0.1]{graph-market-2.jpg}
    }
    
    \uncover<3->{
        \vspace{-2.7in}
        
        \hfill
        \includegraphics[scale=0.1]{graph-market-1.jpg}
    }
    
    \uncover<4>{
        \begin{tikzpicture}[overlay,remember picture]
        \shade[shading=axis,
        top color=blue!60,
        bottom color=blue!60,
        %middle color=red,
        shading angle=30 %????
        ]
        %       (current page.west)--++(15:1.2\paperwidth)--++(0,-2cm) --([yshift=-2cm]current page.west)--cycle node\[right,rotate=15,xshift=2cm,yshift=-1cm] {\Huge \alert{D\'ej\`a vu all over again?}};
        (current page.west)--++(0:1.2\paperwidth)--++(0,-1cm) --([yshift=-1cm]current page.west)--cycle node[right,xshift=5cm,yshift=-0.5cm] {\Large \textcolor{White}{CAGR $>$ 20\%}};
        \end{tikzpicture}
    }
    
\end{frame}



\note{%
    \begin{itemize}
        \item<1-> Verified Market Research: Right now the market is \$781M
        \item<1-> Verified Market Research: It will be \$4.13B by 2026
        \item<2-> MarketsandMarkets prediction: \$2.4B by 2023 (in the slides)
        \item<3-> Gartner expects 100\% growth annually through 2022
        \item<4> Cumulative Annual Growth Rate (CAGR) > 20\% -- expectation by almost everyone
    \end{itemize}
}
\end{document}

1

答案1

根据以下方法算出来的Beamer 覆盖注释:最后一个注释缺失。基本上,注释需要放在动画里面并添加一些内容。

首先,序言需要修改为:

\usepackage{pgfpages}
\setbeameroption{show notes}
\setbeameroption{show notes on second screen=top}
\setbeamertemplate{note page}{\pagecolor{yellow!5}\insertnote}

然后必须在框架定义中逐项列出注释,如下所示:

\begin{frame}[t]
    \frametitle{Graphs have become ubiquitous}
    
    \uncover<1->{\includegraphics[scale=0.2]{graph-market.jpg}}
    
    %\vspace{1cm}
    
    \uncover<2->{
        \vspace{-2.2in}
        \centering
        \includegraphics[scale=0.1]{graph-market-2.jpg}
    }
    
    \uncover<3->{
        \vspace{-2.7in}
        
        \hfill
        \includegraphics[scale=0.1]{graph-market-1.jpg}
    }
    
    \uncover<4>{
        \begin{tikzpicture}[overlay,remember picture]
        \shade[shading=axis,
        top color=blue!60,
        bottom color=blue!60,
        %middle color=red,
        shading angle=30 %????
        ]
        %       (current page.west)--++(15:1.2\paperwidth)--++(0,-2cm) --([yshift=-2cm]current page.west)--cycle node[right,rotate=15,xshift=2cm,yshift=-1cm] {\Huge \alert{D\'ej\`a vu all over again?}};
        (current page.west)--++(0:1.2\paperwidth)--++(0,-1cm) --([yshift=-1cm]current page.west)--cycle node[right,xshift=5cm,yshift=-0.5cm] {\Large \textcolor{White}{CAGR $>$ 20\%}};
        \end{tikzpicture}
    }
    
    \note<1->[item]{Verified Market Research: Right now the market is \$781M}
    \note<1->[item]{Verified Market Research: It will be \$4.13B by 2026}
    \note<2->[item]{MarketsandMarkets prediction: \$2.4B by 2023 (in the slides)}
    \note<3->[item]{Gartner expects 100\% growth annually through 2022}
    \note<4->[item]{Cumulative Annual Growth Rate (CAGR) $>$ 20\% -- expectation by almost everyone}
\end{frame}

现在它起作用了。顺便说一句,\note{...}在 之后没有\end{frame}

我还需要弄清楚两件事(非常欢迎提出建议):

  1. 我无法让它工作show notes on second screen=bottom;如果有人有什么想法?...
  2. 我需要弄清楚如何让笔记不显得杂乱(尽管这真的很小)。

相关内容