在 Beamer 中,我喜欢在所有幻灯片中放置背景图像。因此我可以使用这:
\usebackgroundtemplate{
\tikz[overlay,remember picture] \node[opacity=0.3, at=(current page.center)] {
\includegraphics[height=\paperheight,width=\paperwidth]{background.png}};
}
但是,要将背景图像放在右下角,我该怎么做?我想我应该将“当前页面.中心”更改为“当前页面.东南”之类的内容。但是,我想将图像文件的右下角与幻灯片的右下角匹配。
答案1
anchor=south east
与 相加。at=(current page.south east)
此外,您可能还想设置inner sep=0
以避免不必要的空格。
平均能量损失
\documentclass{beamer}
\usepackage{tikz}
\usepackage{mwe} % provides example image
\usebackgroundtemplate{
\tikz[overlay,remember picture]
\node[opacity=0.3, at=(current page.south east),anchor=south east,inner sep=0pt] {
\includegraphics[height=\paperheight,width=\paperwidth]{image}};
}
\begin{document}
\frame{frame content}
\end{document}