如何使用 Latex Beamer 将目录拆分为多张幻灯片?

发布于 2024-07-21 17:19:28 字数 130 浏览 9 评论 0原文

我目前正在准备一些用于演示的幻灯片,并使用 Latex 和 Beamer 包。 目前,我的演示文稿的各部分和小节导致目录幻灯片中的演示文稿概述文本延伸到页面底部之外。

有没有办法将我的目录拆分,以便它们显示在多张幻灯片上?

I currently am preparing some slides for a presentation and am using Latex with the Beamer package. Currently the sections and subsections of my presentation cause the presentation overview text in the table of contents slide to extend past the bottom of the page.

Is there a way to split my table of contents up so they are displayed across multiple slides?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

吾家有女初长成 2024-07-28 17:19:28

如果您手动拆分目录,您可以更精细地控制来选择一个好的断点:

\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}

If you split the table of contents manually, you have more fine control to select a good break point:

\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}
猫瑾少女 2024-07-28 17:19:28

您可以将演示文稿分成几个部分,

\part{1} .... \part{n}

然后您可以在另一张幻灯片上显示每个部分的目录,

\tableofcontents[part=1]

如果您

\tableofcontents[currentsection]

仅使用该部分的目录,将显示...

You can divide your presentations in parts with

\part{1} .... \part{n}

then you can show the toc of every part on an other slide with

\tableofcontents[part=1]

If you use

\tableofcontents[currentsection]

only the toc of the part will be displayed...

心清如水 2024-07-28 17:19:28

您还可以尝试:

\begin{frame}[shrink]{Outline}

上面将尝试缩小内容以适应框架边距。

You can also try:

\begin{frame}[shrink]{Outline}

The above will try to shrink content to fit frame margins.

逐鹿 2024-07-28 17:19:28
\begin{frame}[allowframebreaks]{Outline}

上面的代码将分割多张幻灯片上的任何悬垂部分。

\begin{frame}[allowframebreaks]{Outline}

The above code will split any over hang across multiple slides.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文