我想将图像放在 Beamer 标题页的某个位置。我也不想让它打断文本流,也就是说,我想让图像出现在文本“后面”。
有任何想法吗?
答案1
重新定义background
(或background canvas
)模板以包含您的图像;使用 TikZ 您可以将其放置在\node
并控制其属性(例如位置、不透明度):
\documentclass{beamer}
\usepackage{tikz}
\title{The Title}
\subtitle{The Subtitle}
\author{The Author}
\institute{The Institute}
\begin{document}
{
\setbeamertemplate{background canvas}{%
\tikz[remember picture,overlay]%
\node[opacity=0.1] at (current page.center)%
{\includegraphics[width=\paperwidth,height=\paperheight,keepaspectratio]{example-image-a}};%
}
\begin{frame}
\maketitle
\end{frame}
}
\begin{frame}
Test frame
\end{frame}
\end{document}
添加
\setbeamertemplate{background canvas}{%
\tikz[remember picture,overlay]%
\node[opacity=0.1] at (current page.center)%
{\includegraphics[width=\paperwidth,height=\paperheight,keepaspectratio]{example-image-a}};%
}
在序言中,导致背景图像出现在所有帧中。