创建隐藏(未列出)部分并且不破坏当前子部分

创建隐藏(未列出)部分并且不破坏当前子部分

问题

在我的演示文稿中,我想在特定子节内加入一个小型速成课程。这个速成课程不应有自己的部分,而应位于当前部分和子节之外。有点像附录,但目录应该仍然可见,只是完全变灰。

在子部分的第 1 张幻灯片之后,我希望隐藏一张或两张幻灯片,不让其出现在所有内容列表中(可能不包括整体页码),之后,我将继续播放我离开的子部分中的第 2 张幻灯片。这不是有条件的,因此附录中幻灯片的按钮对我没有帮助,而且我不想在演讲期间单击幻灯片。

想法

我尝试隐藏未列出的部分中的幻灯片,但这会破坏子部分内框架的计数器 - 显然,因为我用新部分结束了子部分。应该有一个可以设置的计数器,但我不知道是哪一个。

此外,如果隐藏部分在显示整体目录的同时,可以在相应的行中有一个小节标题,那就太酷了 - 但这并不是至关重要的。

平均能量损失

\documentclass[a4paper]{beamer}

\usetheme{Dresden}
\usecolortheme{albatross}

\begin{document}
    \section{Main section}
        \subsection{First subsection}
            \begin{frame}{First frame of first subsection}
            People understand all this stuff.
        \end{frame}
    \section[]{Hidden crash-course}
        % IT WOULD BE NICE TO HAVE AN SUBSECTION TITLE HERE
        \begin{frame}{Explain stuff to me}
        You will need this and that for the next slide
        \end{frame}
    % \section{Main section} SHOULD BE CONTINUED HERE   
    \subsection{First subsection (don't break me)}
        \begin{frame}{Second frame of first subsection}
        Luckily you paid attention to the crash-course, so now you understand this...
        \end{frame}
        \begin{frame}{Third frame of first subsection}
        ... and that.
        \end{frame}
    \subsection{Second subsection}
        \begin{frame}{Some different stuff}
        Content
        \end{frame}
\end{document}

答案1

借助一点反巫术,您可以恢复第一节和子节。如果您在另一个位置中断,则必须相应地调整值。

\documentclass[a4paper]{beamer}

\usetheme{Dresden}
\usecolortheme{albatross}

\begin{document}
    \section{Main section}
        \subsection{First subsection}
            \begin{frame}{First frame of first subsection}
            People understand all this stuff.
        \end{frame}
 \addtocounter{section}{42}
 \section[]{hidden}
        \begin{frame}{Explain stuff to me}
        You will need this and that for the next slide
        \end{frame}
    \addtocounter{section}{-42}
    \subsection{First subsection}
        \addtocounter{subsectionslide}{1}
        \begin{frame}{Second frame of first subsection}
        Luckily you paid attention to the crash-course, so now you understand this...
        \end{frame}
        \begin{frame}{Third frame of first subsection}
        ... and that.
        \end{frame}
    \subsection{Second subsection}
        \begin{frame}{Some different stuff}
        Content
        \end{frame}
\end{document}

在此处输入图片描述

相关内容