有没有办法隐藏 beamer 中的部分幻灯片而不将其从标题中删除?
答案1
您可以\AtBeginSection{}
围绕该部分设置一个组:
\documentclass{beamer}
\usetheme{moloch}% modern fork of the metropolis theme
\begin{document}
{
\AtBeginSection{}
\section{section}
\begin{frame}
\frametitle{title}
Some text.
\end{frame}
}
\section{section}
\begin{frame}
\frametitle{title}
Some text.
\end{frame}
\end{document}