将标题页移至 Beamer 中的演示文稿中间

将标题页移至 Beamer 中的演示文稿中间

当我使用 Beamer 创建演示文稿时,是否可以将标题幻灯片放在演示文稿中间的某个位置?也就是说,假设我想在演示文稿的最开始显示几张幻灯片,然后在这些幻灯片之后显示标题幻灯片(即包含标题、作者等的幻灯片)。我见过邮政一些很好的人讨论了如何在演示文稿中创建部分,但这并不是我所寻找的。提前非常感谢。

答案1

事实证明,解决这个问题非常简单。我需要做的就是将\maketitle命令移到中间,我想要显示标题页的地方。我将我想要在标题中使用的所有信息(例如作者)放在适当的命令之前\begin{document},然后我将其移到\maketitle中间,这样就解决了问题。

答案2

我决定为第一页创建一个单独的 .tex 文件,并使用命令将其包含在演示文稿的中间\include。关注 mwe:

主文件:

\documentclass[10pt, a4paper, serif]{beamer}
\usepackage{beamerthemeshadow}


\title[]{Test I}
\subtitle[]{}
\author[Alexandre Loures]{Alexandre Loures}
\institute{}
\date{}

\begin{document}

\maketitle

\section{}

\begin{frame}

\frametitle{}{\ 

test I

}

\end{frame}

\include{title} % <= here comes the file created the part

\begin{frame}

\frametitle{}{\

test II

}

\end{frame}

\end{document}

创建该部分的另一个文件(我称之为 title.tex)如下:

\section{}

\title[]{Test II}
\subtitle[]{}
%\author[]{}
\institute{}
\date{}

\maketitle

结果:

在此处输入图片描述

在此处输入图片描述

在此处输入图片描述

在此处输入图片描述

相关内容