Latex Beamer - 使每个项目自动出现在新幻灯片上

5

我想找到一种方法,在不使用每个\item中的\pause或幻灯片出现的规格的情况下,为\itemize中的每个\item生成一个新的幻灯片。 我记得曾经找到过一些可以放置在导言中的命令来完全执行此操作,但是我不记得了。 有人有主意吗?

2个回答

11
\documentclass{beamer}

\beamerdefaultoverlayspecification{<+->}

\begin{document}

\begin{frame}
  \begin{itemize}
    \item test
    \item test
  \end{itemize}
\end{frame}
    
\end{document}

谢谢,这正是我想要的!还有一种方法可以在文档内关闭和重新打开它吗? - joinijo
@joinijo 你可以使用\beamerdefaultoverlayspecification{<*>}切换回默认行为。 - samcarter_is_at_topanswers.xyz

11
被接受的答案有轻微补充,你可以为每个项目环境切换此行为。
\documentclass{beamer}

\begin{document}

\begin{frame}
  \begin{itemize}[<+->]
    \item test
    \item test
  \end{itemize}
\end{frame}
    
\end{document}

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接