在LaTeX Beamer中有多个幻灯片模板

时间:2010-07-01 14:21:20

标签: latex beamer

我想使用LaTeX beamer创建一个演示文稿,它有两种不同的幻灯片模板/布局:一个用于带有背景图像的幻灯片,另一个用于没有指定背景图像的幻灯片的布局/模板。

使用beamer是否有任何诀窍?

4 个答案:

答案 0 :(得分:1)

基本上我归结为将\usebackgroundtemplate放在每个\begin{frame}...\end{frame}之前。

答案 1 :(得分:1)

如果您想要单张幻灯片的特定背景图片,只需输入

即可

{\usebackgroundtemplate{\includegraphics[width=\paperwidth]{background.jpg}}

直接在\begin{frame}之前。

答案 2 :(得分:0)

如果我理解正确,问题是如何同时生成两个演示文稿的副本。为此,您可以使用一些低级tex命令和几个文件。

Presentation.tex你可能有

%&pdftex
\relax
\immediate\write18{pdflatex -synctex=1 PresentationWithBG.tex}
\relax
\immediate\write18{pdflatex -synctex=1 PresentationWithoutBG.tex}
\end

这是您实际运行latex的唯一文件,您使用pdftex --shell-escape Presentation.tex执行此操作。但是你还需要以下内容。

PresentationWithBG.tex中(请注意,每帧之前实际上并不需要\usebackgroundtemplate):

\documentclass{beamer}
\setbeamercolor{background canvas}{bg=}
\usebackgroundtemplate{\includegraphics[width=\paperwidth]{<your_background_fig>}}
\input{PresentationContent}

PresentationWithoutBG.tex

\documentclass{beamer}
\input{PresentationContent}

PresentationContent.tex

\begin{document}
[All your actual presentation goes here...]
\end{document}

当您运行pdftex --shell-escape Presentation.tex时,您将获得PresentationWithBG.pdfPresentationWithoutBG.pdf

请注意%&pdftex中的Presentation.tex可确保正在运行的TeX版本切换到正确的模式。您实际上可以使用pdflatex运行它。

答案 3 :(得分:0)

这可以通过新的框架选项轻松完成:

\documentclass{beamer}

\defbeamertemplate{background canvas}{mydefault}{%
  \includegraphics[width=1cm]{example-image-duck}
}
\defbeamertemplate{background canvas}{fullimage}{%
  \includegraphics[width=\paperwidth]{example-image-duck}
}

\BeforeBeginEnvironment{frame}{%
  \setbeamertemplate{background canvas}[mydefault]%
}

\makeatletter
\define@key{beamerframe}{fullimage}[true]{%
  \setbeamertemplate{background canvas}[fullimage]%
}
\makeatother

\begin{document}

\begin{frame}
  left
\end{frame} 

\begin{frame}[fullimage]
  right
\end{frame}

\begin{frame}
  is left again
\end{frame}

\end{document}