显示 Beamer 中的章节/子章节

显示 Beamer 中的章节/子章节

我想在 Beamer 中显示章节/小节/小子节,就像在 Latex 中一样(即在幻灯片的中间,而不是在侧边栏)

答案1

Beamer 提供命令\insertsection、,\insertsubsection用于\insertsubsubsection插入当前部分等。

请参阅 Beamer 类用户指南,第 64 和 65 页。(在我的系统中是 v3.33)。

答案2

我不确定这是否是您要找的,但您可以 根据需要在主体框架中插入\thesection. \insertsection或:\thesubsection. \insertsubsection

在此处输入图片描述

\documentclass{beamer}
\usetheme{Warsaw} 

\def\SecT#1{\begin{frame}[plain]
\begin{block}{}
\centering\huge\thesection. \insertsection
\end{block}
\vfill\Large #1
\end{frame}}

\begin{document}

\section{Overview}\SecT{}
\begin{frame}{Normal frame} Lore ipsum ...  \end{frame}
\section{Remarks}
\SecT{Some interesting to the audience...}
\begin{frame}{Normal frame} Lore ipsum ...  \end{frame}
\end{document}

相关内容