投影机的定制模板

投影机的定制模板

我是一个坚定的beamer用户,但在我的研究所,他们要求我遵循一些模板(当然是用 PowerPoint 准备的)。我想尽可能地模仿它beamer,因为否则我担心我不得不使用 PowerPoint。然而,我认为设置beamer需要对内部工作原理有广泛的了解beamerpgf而不幸的是,我现在缺乏这一点。

我附上了几张标题和常规幻灯片的快照,希望一些专家能就如何进行提供一些建议。当然,顶部的图像和徽标是我拥有的图像。问题是蓝色方块和缺乏分区……

在此处输入图片描述

在此处输入图片描述

答案1

另一种方法:

取出 PowerPoint 页面并将其保存为 pdf。然后,您可以将 pdf 页面用作您的 beamer 演示文稿的背景。

然后定义文本的可用区域(标题和文本区域的位置)。

不要忘记使用正确的字体。

可以使用以下方法更改背景:

\usebackgroundtemplate{
    \includegraphics[width=\paperwidth,height=\paperheight]{my_pdf_copy_of_empty_ppt_template}
}

一个更完整的示例,其中包含一些用于移动标题和页脚块的附加命令。

\documentclass{beamer}

\usetheme{Warsaw}
%Add background image
\usebackgroundtemplate{
   \includegraphics[width=\paperwidth,height=\paperheight]{my_pdf_copy_of_empty_ppt_template}
}
\setbeamertemplate{headline}{\vspace{2cm}}%Shift the title block
\setbeamertemplate{footline}{\vspace{2cm}}%Shift the foot block
\setbeamersize{%shift the horizontal borders.
  text margin right=5cm,
  text margin left=5cm
}

\begin{document}

\begin{frame}{Title}{Sub-title}
\rule{\textwidth}{\textheight}
\end{frame}

\end{document}

相关内容