我是该模板的忠实粉丝default
,但我现在为一家使用 PowerPoint 模板的组织工作。显然我不会使用 PowerPoint,但我确实需要让我的 Beamer 演示文稿看起来像他们的 PowerPoint 模板。这是一个简单的模板,只需要一个通用的页脚图像,以及标题幻灯片上的免责声明,以及标题幻灯片左上角的图像。
如果可能的话,我想简单地在default
beamer 模板中添加几行以包含页脚图像和标题页左上角的图像。
我看到过很多帖子,试图做出更复杂的更改,比如创建全新的模板。我希望做一些(但愿)更简单的事情。如果有人能告诉我如何做到这一点,我将不胜感激。
我使用 ubuntu,并且从 ubuntu 附带的标准 texlive 存储库下载了 beamer。
以下是图片示例:
答案1
白猫我不会用,好恐怖啊!
\documentclass{beamer}
\setbeamertemplate{footline}
{
\leavevmode%
\includegraphics[width=\paperwidth]{59Djv}%
}
\title{Title}
\author{author names}
\begin{document}
{
\setbeamertemplate{footline}
{
\vskip-10pt
We are not responsible for anything
\leavevmode%
\includegraphics[width=\paperwidth]{59Djv}%
}
\logo{%
\begin{picture}(0,0)
\put(-350,170){\includegraphics[width=1cm]{example-image}}
\end{picture}%
}
\begin{frame}
\titlepage
\end{frame}
}
\begin{frame}
\frametitle{Frametitle}
slide
\end{frame}
\end{document}
也许是一个更简单的版本,但对标题页图像位置的控制不太精细:
\documentclass{beamer}
\setbeamertemplate{footline}
{
\leavevmode%
\includegraphics[width=\paperwidth]{59Djv}%
}
\addtobeamertemplate{title page}{\includegraphics[width=1cm]{example-image}}{}
\title{Title}
\author{author names}
\begin{document}
{
\addtobeamertemplate{footline}{%
\vskip-10pt
We are not responsible for anything
}{}
\begin{frame}
\titlepage
\end{frame}
}
\begin{frame}
\frametitle{Frametitle}
slide
\end{frame}
\end{document}
答案2
当我处于类似情况时,我\logo
结合使用了tikz
:
\usepackage{tikz}
\logo{% using the logo macro, the location of the logo is enforced by tikz
\begin{tikzpicture}[remember picture,overlay]
\node[anchor=north east,yshift=1pt,xshift=2pt] at (current page.north east)%change the positioning here
{\includegraphics[height=8mm]{img/logo.png}};
\end{tikzpicture}
}
对于标题框我使用了:
\begin{frame}
\begin{tikzpicture}[remember picture,overlay]
\node[anchor=north west,yshift=-1.5pt,xshift=1pt]%
at (current page.north west)
{\includegraphics[height=5mm]{img/titlelogo.png}};
\end{tikzpicture}
\maketitle
\end{frame}
我希望这有帮助。