我目前正在为演示准备一些幻灯片,并且正在使用带有 Beamer 包的 Latex。目前,我的演示文稿的部分和小节导致目录幻灯片中的演示文稿概述文本超出页面底部。
有没有办法拆分我的目录,以便它们显示在多张幻灯片中?
\begin{frame}[allowframebreaks]{Outline}
上面的代码将跨多张幻灯片拆分任何悬垂。
你也可以试试:
\begin{frame}[shrink]{Outline}
以上将尝试缩小内容以适应框架边距。
您可以将演示文稿分成几部分
\part{1} .... \part{n}
然后你可以在另一张幻灯片上显示每个部分的目录
\tableofcontents[part=1]
如果你使用
\tableofcontents[currentsection]
只会显示零件的目录...
如果您手动拆分目录,您可以更精细地控制选择一个好的断点:
\documentclass{beamer}
\begin{document}
\begin{frame}
\only<1>{\tableofcontents[sections={1-4}]}
\only<2>{\tableofcontents[sections={5-}]}
\end{frame}
\section{title1}
\begin{frame}
content...
\end{frame}
\section{title2}
\begin{frame}
content...
\end{frame}
\section{title3}
\begin{frame}
content...
\end{frame}
\section{title4}
\begin{frame}
content...
\end{frame}
\section{title5}
\begin{frame}
content...
\end{frame}
\section{title6}
\begin{frame}
content...
\end{frame}
\section{title7}
\begin{frame}
content...
\end{frame}
\section{title8}
\begin{frame}
content...
\end{frame}
\end{document}