在 Beamer 标题页底部插入文本

在 Beamer 标题页底部插入文本

我想在标题页底部插入一些文本(如合作信息)。我可以使用 插入徽标\pgfdeclareimage,我还想插入一些文本。我该怎么做?

答案1

您可以footline本地重新定义标题页的模板:

\documentclass{beamer}

\author{T.H.E. Author}
\title{Some Title}

\begin{document}

\begingroup
\setbeamertemplate{footline}{\vspace*{-1cm}\centering Some information\\ some more info\par} 
\begin{frame}
  \titlepage
\end{frame}
\endgroup

\begin{frame}
A     test frame without footline information
\end{frame}

\end{document}

编辑:或者简单地在之后\titlepage(和之前,以补偿)添加一些垂直空间并添加信息:

\documentclass{beamer}

\author{T.H.E. Author}
\title{Some Title}
\begin{document}

\begin{frame}
  \vspace*{1.5cm}\titlepage  
  \vspace*{1.5cm}
  \centering Some information \\ some more info\par
\end{frame}

\begin{frame}
A test frame without footline information
\end{frame}

\end{document}

EDIT2:为了让文本出现在每一帧中(按照评论的要求),您可以footline全局重新定义模板:

\documentclass{beamer}

\author{T.H.E. Author}
\title{Some Title}

\setbeamertemplate{footline}{%
  \vspace*{-1cm}\centering\normalsize Some information\\[0.3em] some more info\\[0.3em]} 

\begin{document}

\begin{frame}
  \titlepage
\end{frame}

\begin{frame}
A test frame
\end{frame}

\end{document}

相关内容