向 latex beamer 添加注释

向 latex beamer 添加注释

我需要为演示文稿添加注释,就像我们添加 Microsoft PowerPoint“单击添加注释”一样。有没有办法使用 latex beamer 来做到这一点?

答案1

您可以将框架环境之间的所有内容写入note命令中。使用该选项,[itemize]您写入注释的所有内容将看起来像一个逐项列表。

%\documentclass[notes]{beamer}       % print frame + notes
\documentclass[notes=only]{beamer}   % only notes
%\documentclass{beamer}              % only frames

\title[Your Short Title]{Your Presentation}
\author{You}
\institute{Where You're From}
\date{\today}

\begin{document}

\begin{frame}
  \titlepage
\end{frame}

\begin{frame}
    \frametitle{Introduction}

\begin{itemize}
  \item Your introduction goes here!
  \item Use \texttt{itemize} to organize your main points.
\end{itemize}

\end{frame}

\note{Everything you want}

\begin{frame}
    \frametitle{Development}

    Lot of interesting things

\end{frame}

\note[itemize]{
\item point 1
\item point 2
}

\begin{frame}
    \frametitle{Development}

    Lot of interesting things

\end{frame}

\end{document}

请参阅此处有关写入 latex 的信息:https://www.writelatex.com/181070qqjrgq

相关内容