大都市主题:跳过一个部分页面,但保留其他页面

大都市主题:跳过一个部分页面,但保留其他页面

我有一个大都会演示文稿,我想为除第一个部分之外的每个部分设置部分介绍框架(在我的领域中,直接跳到介绍部分很常见)。我知道我可以使用以下方法关闭部分幻灯片:

\metroset{sectionpage=none}

但我不知道如何再次打开它们。

\metroset{sectionpage=simple}

之后就不做了。

这里有一个最小示例我的尝试被注释掉了:

\documentclass[10pt]{beamer}
\usetheme{metropolis}

\begin{document}

%\metroset{sectionpage=none}
\section{This should not have an intro frame}
%\metroset{sectionpage=simple}

\begin{frame}
    test
\end{frame}

\section{I want this one to have an intro frame}

\begin{frame}
    test
\end{frame}


\end{document}

如果取消注释,所有介绍幻灯片都会丢失。

编辑:文档是这里我使用的部分在第7页。

答案1

您可以在不应该有部分页面的一个部分的组内使用\metroset{sectionpage=none}(或者\molochset{sectionpage=none}如果您使用更现代的分支moloch而不是主题):metropolis

\documentclass[10pt]{beamer}
\usetheme{moloch}% modern fork of the metropolis theme

\begin{document}

{
\molochset{sectionpage=none}
\section*{This should not have an intro frame}
}

\begin{frame}
    test
\end{frame}

\section{I want this one to have an intro frame}

\begin{frame}
    test
\end{frame}


\end{document}

相关内容