部分透明的文本框

部分透明的文本框

我正在尝试使用 制作海报beamer。有人可以回复我吗?我的问题是:

我怎样才能制作我的盒子部分透明这样我的背景就能透过方框看到了吗?

答案1

以下内容逐字摘自PGF 文档(部分20 透明度,第 234 页):

在此处输入图片描述

\documentclass{article}
\usepackage{tikz}% http://ctan.org/pkg/tikz
\begin{document}
\begin{tikzpicture}[every node/.style={fill,draw}]
  \draw[line width=2mm,blue!50,line cap=round] (0,0) grid (3,2);
  \node[opacity=0.5] at (1.5,2) {Upper node};
  \node[draw opacity=0.8,fill opacity=0.2,text opacity=1]
    at (1.5,0) {Lower node};
\end{tikzpicture}
\end{document}

它直接翻译为beamer

相关内容