Beamer Metropolis 主题 - 将目录添加到部分页面

Beamer Metropolis 主题 - 将目录添加到部分页面

有没有办法将目录添加到章节页面?我知道我可以在章节页面之前单独添加目录,就像在我的 MWE 中一样。

梅威瑟:

\documentclass[10pt]{beamer}

\usetheme[sectionpage=progressbar]{metropolis}
\AtBeginSection[]
{
\setbeamerfont{currentsection in toc}{size=\Large}
\frame{\tableofcontents[currentsection]}
\frame{\sectionpage}
}
\begin{document}

\begin{frame}
  \tableofcontents
\end{frame}

\section{S1}
\begin{frame}
  Test
\end{frame}
\section{S2}
\section{S3}

\end{document}

章节 页码 目录

因此,我想将目录中的灰色部分标题添加到部分页面。作为替代方案,我可以更改目录的样式(尽管我不知道如何更改)以匹配部分页面样式。虽然我喜欢这个进度条,但没有必要。

提前感谢你的帮助!

答案1

您可以将\sectionpage和放在\tableofcontents同一个块\frame\AtBeginSection

\documentclass[10pt]{beamer}

\usetheme{metropolis}
\AtBeginSection{
  \frame{
    \sectionpage
    \tableofcontents[currentsection]
  }
}
\begin{document}

\section{S1}

\begin{frame}
  Test in section 1
\end{frame}

\section{S2}

\begin{frame}
  Test in section 2
\end{frame}

\section{S3}

\end{document}

代码示例

相关内容