在 beamer 类文档中,我想更改枚举环境的定义,以便每个项目都显示在自己的框架中,位于框架的顶部。换句话说,我希望以下代码
\documentclass{beamer}
% Code changing the definition of enumerate
\begin{document}
\begin{enumerate}
\item First point
\item Second point
\end{enumerate}
\end{document}
产生相同的结果
\documentclass{beamer}
\begin{document}
\begin{frame}
1) First point
\vspace*{\textheight} % moves the item at the top of the slide
\end{frame}
\begin{frame}
2) Second point
\vspace*{\textheight}
\end{frame}
\end{document}
请注意,我不希望1) First point
出现在第二张幻灯片上。
如果可能的话(锦上添花!),我希望这个重新定义enumerate
仅适用于特定环境中使用时(比如myenv
)。