更改 Beamer 模板中的页眉、页脚和标题图像

更改 Beamer 模板中的页眉、页脚和标题图像

我希望在 Beamer 模板的标题页中添加背景图像,并更改普通幻灯片中的页眉和页脚图像。

我还没有找到一个可以轻松实现这一点的模板,并且我想知道从哪里开始。

我基本上想用漂亮的 Beamer 幻灯片复制用 ppt 制作的公司幻灯片,这样我就可以使用已经在 LaTeX 中创建的方程式。

如果这类问题违反了某些论坛准则,我很抱歉...

答案1

这就是我所使用的,我有一个用于标题栏的公司颜色的自定义用户模板......

在序言中

    \defbeamertemplate*{title page}{customized}[1][]
    {
    \begin{flushright}
    \usebeamercolor{structure}
    \usebeamerfont{title}\inserttitle\par
    \usebeamerfont{subtitle}\usebeamercolor{subtitle}\insertsubtitle\par
    \bigskip
    \usebeamerfont{author}\insertauthor\par
    \usebeamerfont{institute}\insertinstitute\par
    \usebeamerfont{date}\insertdate\par
    \end{flushright}
    }

\title[]{yourtitle}
\subtitle[]{Subtitle}
\author[] {you}
\institute[] {company}
\date[] {tody is \today}
\subject{Subject of presentation} 

在这里,您可以定义幻灯片的背景,我仅使用页面宽度的自定义页脚

\usebackgroundtemplate%
{%
\vbox to \paperheight{
\vfill
\includegraphics[width=\paperwidth]{slide} %your picture
    }%
}

第一张幻灯片

%--- the titlepage frame -------------------------%
{\usebackgroundtemplate%
{%
\includegraphics[width=\paperwidth,height=\paperheight]
{yourpicture}
\begin{frame}[plain]
\titlepage
\end{frame}
}

相关内容