独立背景颜色

独立背景颜色

考虑这个例子:

\documentclass[border=5pt]{standalone}
\usepackage{graphicx}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
  \node(a) at (0.0, 0.0)[anchor=south west]{\includegraphics[width=0.3\paperwidth]{example-image-a}};
  \draw[blue, fill=bg] (0.15\paperwidth, 0.0\paperwidth) rectangle (0.3\paperwidth, 0.15\paperwidth);
\end{tikzpicture}
\end{document}

在此处输入图片描述

我希望矩形的颜色与中的背景颜色完全匹配standalone。我检查了如何在 TikZ 中绘制背景颜色?但看起来它很beamer具体。

相关内容