透明且居中的图像位于由两个条形图(头部和侧面)组成的框架内

透明且居中的图像位于由两个条形图(头部和侧面)组成的框架内

我尝试将透明图像置于投影仪幻灯片的中心,效果很好(代码如下所示),但现在我的演示beamer文稿有两个条:一个在头部(2.5 厘米),一个在左侧(2.5 厘米)。我想将图形置于由这两个条形成的新框架的中心,您能帮我吗?

提前谢谢您。问候!

\usebackgroundtemplate{%
\tikz[overlay,remember picture] \node[opacity=0.3, at=(current page.center)] {
   \includegraphics[height=\paperheight,width=\paperwidth]{example-image-a}};
}

答案1

您可以根据需要减少图形的高度和宽度,并在节点放置规范中执行移位:

\documentclass{beamer}
\usepackage{tikz}

\begin{document}

{
\usebackgroundtemplate{% 
\tikz[overlay,remember picture] \node[opacity=0.3] at ([xshift=1.25cm,yshift=-1.25cm]current page.center) { \includegraphics[height=\dimexpr\paperheight-2.5cm\relax,
width=\dimexpr\paperwidth-2.5cm\relax]{example-image-a}}; }

\begin{frame}
\null
\end{frame}
}

\end{document} 

在此处输入图片描述

相关内容