带不同字幕的帧中断

带不同字幕的帧中断

是否可以有一个带有延续标题的帧,并且每个帧中断都有不同的副标题?遵循 MWE:

\documentclass{beamer}

\setbeamertemplate{frametitle continuation}[from second]

\begin{document}

\begin{frame}[allowframebreaks]{Title}
\framesubtitle{Subtitle 1}

test 1

\framebreak
\framesubtitle{Subtitle 2}

test 2

\end{frame}

\end{document}

问题在于,beamer 对所有幻灯片都采用“Subtitle 2”。

答案1

你的问题看上去不可能解决。

虽然由于 的原因,该框架会显示在多个页面中\framebreak,但从概念上讲它仍然只是一个框架。并且该特定框架的字幕必须相同,尽管它们显示在多个页面上。

第一个用法\framesubtitle{Subtitle 1}被第二个用法取代\framesubtitle{Subtitle 2},因为它们用两个不同的参数设置了相同的属性。这就是为什么“字幕 2”显示在所有页面中的原因。

也许您可以尝试其他方式添加信息。

这是在同一帧的不同页面中显示不同字幕的另一种方法: Beamer,带不同字幕的帧中断

相关内容