组织好帧


摘要

在beamer中,摘要支持动作规范

\begin{abstract}<动作规范>
摘要内容
\end{abstract}

条目

标准的itemize、enumerate、description环境以及“\item”命令在beamer中都重新定义, 加入了覆盖规范。

itemize环境如下

\begin{itemize}[<缺省的覆盖规范>]
\item<覆盖规范>
\end{itemize}
比如
\begin{itemize}[<+->]
\item 由于使用了缺省覆盖规范,本条从首张幻灯片,直到最后
\item 由于使用了缺省覆盖规范,本条从第二张幻灯片,直到最后
\item 由于使用了缺省覆盖规范,本条从第三张幻灯片,直到最后
\item<1-> 本条从第一张幻灯片,直到最后
\end{itemize}

enumerate环境与itemize类似

\begin{enumerate}[<缺省的覆盖规范>][最小模板]
\item<覆盖规范>
\end{enumerate}

description环境

\begin{description}[<缺省的覆盖规范>][长文本]
\item<覆盖规范>
\end{description}

引用

标准的verse、quotation、quote现在支持动作规范

\begin{verse}<动作规范>
诗词
\end{verse}

\begin{quotation}<动作规范>
多段落
\end{quotation}

\begin{quote}<动作规范>
段落
\end{quote}

定理

定理、定义、例等的编号可以是局部的,只要在类选项中设置

\documentclass[envcountsect]{beamer}
并且他们现在都支持动作规范
\begin{theorem}<动作规范>[附加文本]
定理内容
\end{theorem}

\begin{definition}<动作规范>[附加文本]
定义内容
\end{definition}

\begin{example}<动作规范>[附加文本]
例子
\end{example}

\begin{proof}<动作规范>[附加文本]
证明
\end{proof}

脚注

脚注的形式是

\footnote<覆盖规范>[选项]{注释}
“选项”可以是 比如
\footnote[frame,2]{Not proved.}

脆弱的内容

所谓脆弱文本,就是系统不能按正常方式解释输入字符,典型的就是verbtim环境。不过 beamer提供了一个类似的环境

\begin{semiverbatim}
逐字照抄
\end{semiverbatim}

把帧分割成多列

beamer提供了一个多列环境

\begin{columns}[选项]
多列
\end{columns}
可以把帧分割成多列。“选项”可以是

列可以有两种方式,一种是环境

\begin{column}[对齐方式]{列的宽度}
列的内容
\end{column}
“对齐方式”可以是“t”(顶部),“c”(中心),“b”(底部)。比如
\begin{columns}
\begin{column}[t]{5cm}
Two\\lines.
\end{column}
\begin{column}[t]{5cm}
One line (but aligned).
\end{column}
\end{columns}

列的另一种方式是命令

\column[对齐方式]{列的宽度}
比如
\begin{columns}
\column[t]{5cm}
Two\\lines.
\column[t]{5cm}
One line (but aligned).
\end{columns}

块有自己的标题

\begin{block}<动作规范>{块标题}
块内容
\end{block}

如果想让块的内容高亮度显示,可以用

\begin{alertblock}<动作规范>{块标题}
块内容
\end{alertblock}

如果块是一个例子,可以用

\begin{exampleblock}<动作规范>{块标题}
块内容
\end{exampleblock}


目录