我的教授给了我他定制的 beamer 模板,用于制作演示幻灯片。因此,我使用他的模板准备幻灯片。但是,我遇到了一个无法解决的问题。我的大纲幻灯片包含章节和子章节的名称,并且太大,无法放入单个框架中。因此,我使用了命令\allowframebreaks
,但它产生了令人不快的输出,如下所示:
我希望第一张幻灯片上显示第 1 节和第 2 节(及其各自的小节),第二张幻灯片上显示第 3 节和第 4 节(及其各自的小节)。
我正在分享我的下载链接投影仪模板。
请下载 zip 文件夹并编译文件文档.tex给出。任何帮助都将不胜感激。
答案1
不要将框架分隔符与覆盖层组合在一起,它们在一起效果不好。无论如何,由于您要手动拆分目录,请使用覆盖层而不是框架分隔符:
\documentclass{beamer}
\usetheme{Hyderabad}
\AtBeginSection[]
{
\begin{frame}<beamer>{Outline}
\only<1>{\tableofcontents[sections={1-2},currentsection,currentsubsection]}
\only<2>{\tableofcontents[sections={3-4},currentsection,currentsubsection]}
\end{frame}
}
\begin{document}
\section{Introduction}
\subsection{Overview}
\subsection{Problem formulation for vector recovery}
\subsection{Known result}
\subsection{Abstract of our work}
\section{BCH Codes}
\subsection{An overview of linear codes}
\subsection{Narrow-sense primitive binary BCH codes}
\section{New construction method utilizing the known weight distribution of BCH codes}
\end{document}