我正在尝试使用 beamer 创建讲义(这是我第一次使用它)。从下面的最小代码中可以看到,我正在传递handouts
一个选项。我希望在讲义中忽略覆盖。但是,如果您编译代码,您会发现 itemize 环境中的项目显示在单独的页面上。
你知道为什么吗?
\documentclass[xcolor=pdftex,dvipsnames,table,handouts]{beamer}
\date{Spring 2013}
\subtitle[Lecture 1]{Lecture 1 - The Need for Numerical Methods and Analysis}
\begin{document}
\begin{frame}{Contacting me}
\begin{block}{My contact information:}
Dr. XXX \\
\texttt{[email protected]}
\end{block}
\begin{block}{Office hours}
Monday 2pm -- 4pm.
\end{block}
\end{frame}
\begin{frame}{Course content}
\begin{block}{Overview}
\begin{itemize}[<+->]
\item Basic numerical analysis and some simple methods (6 lectures)
\item Curve-fitting (2 lectures)
\item Numerical differentiation and integration (quadrature) (5 lectures)
\end{itemize}
\end{block}
\end{frame}
\end{document}