我知道这与其他问题类似。其他答案涉及以下任一问题:
- 添加透明图像
- 使图像居中但我无法同时找到答案。
根据之前的答案,我可以成功地使图像透明或居中,但不能同时使图像透明或居中。我尝试过将两者结合起来的方法,但没有成功。
这是我在介绍幻灯片中使用的代码
\usepackage{tikz}
\usebackgroundtemplate{
\vbox to \paperheight
{\tikz \node[opacity=0.2]
{\vfil\hbox to \paperwidth
{\hfil\includegraphics[width=1.5in]{name.png}
\hfil}\vfil} ; }
}
答案1
结合投影机中的透明图像背景和投影仪包中全幻灯片上的图像,你可以这样做:
\documentclass{beamer}
\usepackage{tikz}
\usebackgroundtemplate{%
\tikz[overlay,remember picture] \node[opacity=0.3, at=(current page.center)] {
\includegraphics[height=\paperheight,width=\paperwidth]{example-image-a}};
}
\begin{document}
\begin{frame}
Background transparent image, centered on slide
\end{frame}
\end{document}
您必须编译两次才能使图像居中。