自訂投影機主題中的 JPEG

自訂投影機主題中的 JPEG

我有一些 JPEG 需要放置在投影機主題中。他們是

  • 封面圖片 - cover.jpg:第一張投影片
  • 標題 - header.jpg:僅限第二張投影片
  • 頁尾 - footer.jpg:到最後的第二張投影片

封面圖像出現在第一張投影片上,頁首和頁尾出現在標題投影片上(頁尾之後),頁尾出現在隨後的每張投影片上。

我舉了一個例子:範例投影片

我的頁腳為 jpeg,我希望它顯示在每張投影片上。

到目前為止,我剛剛將它們排列在繪畫中並保存了一張空白幻燈片,然後使用 \usebackgroundtemplate:

\usebackgroundtemplate{%
\includegraphics[width=\paperwidth,height=\paperheight]{frontslide.jpg}} 

然而,這使得圖像扭曲得令人無法接受。

我創建了一個投影機主題,如下所示:

外部:\模式

% Frame title
\defbeamertemplate*{frametitle}{texsx}[1][]
{
\vskip1cm%
  \begin{beamercolorbox}[wd=\paperwidth,ht=1.2cm]{frametitle} 

  \end{beamercolorbox}
}

\mode<all>

內:

\mode<presentation>

\setbeamertemplate{background canvas}{\begin{tikzpicture}\node[opacity=.9]
{\includegraphics [width=\paperwidth]{slide.png}};
\end{tikzpicture}}

% Title page
\defbeamertemplate*{title page}{cdt}[1][]
{ begin{tikzpicture}[remember picture,overlay] \begin{pgfonlayer}{background} \node      at (current page.center) {\includegraphics[width=\paperwidth,height=\paperheight]  {frontslide.jpg}}; \end{pgfonlayer} 
\end{tikzpicture}}

\mode<all>

顏色:

\mode<presentation>

% Settings
\setbeamercolor*{title page header}{fg=white}
\setbeamercolor*{author}{fg=white}
\setbeamercolor*{date}{fg=white}

\mode<all>

主題.sty:

\mode<presentation>

% Requirement
\RequirePackage{tikz}

% Settings
\useinnertheme{cdt}
\useoutertheme{cdt}
\usecolortheme{cdt}

\setbeamertemplate{navigation symbols}{}
\setbeamertemplate{blocks}[rounded][shadow=true]  

\mode<all>

如何直接放置這些 jpeg?

答案1

如果

\documentclass{beamer}
\usepackage{mwe}

\usebackgroundtemplate{
  \vbox to \paperheight{\vfil\hbox to \paperwidth{\includegraphics[width=\paperwidth,height=1cm]{example-image-a}}}
}

\begin{document}
\begin{frame}{Mi title}
Some text
\end{frame}
\end{document}

在此輸入影像描述

是你想要的,請感謝 Gonzalo 的回答投影機背景影像居中

相關內容