更改部分页面样式

更改部分页面样式

我在更改部分页面样式时遇到了麻烦。我现在的情况是这样的:

在此处输入图片描述

我想要的是删除蓝色框上方的“第 1 节”,同时删除该框,并将罗马字母的节编号添加到节标题(此处为简介)中,以便结果为“I. 简介”,居中,12 pt。

我只能删除部分编号,但不能删除蓝色框,方法是按照在投影机幻灯片中创建带有标题页的各部分

其中的代码是:

\documentclass{beamer}
\usetheme{Madrid}

\AtBeginSection[]{
  \begin{frame}
  \vfill
  \centering
  \begin{beamercolorbox}[sep=8pt,center,shadow=true,rounded=true]{title}
    \usebeamerfont{title}\insertsectionhead\par%
  \end{beamercolorbox}
  \vfill
  \end{frame}
}

\title{The Title}
\author{The Author}
\institute{The Institute}

\begin{document}

\begin{frame}
\maketitle
\end{frame}

\section{Test section one}
\begin{frame}
test frame for section one
\end{frame}

\section{Test section two}
\begin{frame}
test frame for section two
\end{frame}

\end{document}

任何帮助,将不胜感激!

答案1

构建于贡萨洛的回答

\documentclass{beamer}
\usetheme{Madrid}

\AtBeginSection[]{
  \begin{frame}
  \vfill
  \centering
    \usebeamerfont{title}\thesection. \insertsectionhead\par%
  \vfill
  \end{frame}
}

\title{The Title}
\author{The Author}
\institute{The Institute}

\begin{document}

\begin{frame}
\maketitle
\end{frame}

\section{Test section one}
\begin{frame}
test frame for section one
\end{frame}

\section{Test section two}
\begin{frame}
test frame for section two
\end{frame}

\end{document}

在此处输入图片描述

相关内容