投影仪中的透明标题

投影仪中的透明标题

如何使投影仪中的框架标题透明?用例是当您有一个超高图像,其高度超过框架高度减去标题高度时(无论出于何种原因,您都不想缩小图像)。

为了清楚起见,我希望顶部的蓝色区域有点(但不是完全)透明。(图片改编自另一个(不相关的)问题

在此处输入图片描述

答案1

您是否尝试过通过 TikZ 来获取大图像remember picture

\documentclass{beamer}
\usepackage{tikz}
\usetheme{Madrid}
\begin{document}
\begin{frame}{Title Text}
\begin{tikzpicture}[remember picture,overlay]
  \node[fill=white,fill opacity=0.5,text opacity=1,inner sep=0] at (current page.center)
  {\includegraphics[height=\paperheight,width=8cm]{ctanlion}};
\end{tikzpicture}
\end{frame}
\end{document}

在此处输入图片描述

相关内容