为了定义填充的不透明度,我可以使用fill opacity = 0.5
。但请考虑以下示例:
\documentclass[margin=1cm]{standalone}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
\fill[blue](-0.5, -0.5) rectangle(0, 0.5);
\fill[green](0, -0.5) rectangle(0.5, 0.5);
\shadedraw[inner color = red, draw=none](0, 0) circle(0.3);
\end{tikzpicture}
\end{document}
结果是:
我希望内圆的外缘逐渐融入背景。因此,我故意回避了 的定义outer color
。但是,默认值显然是outer color=white
。我希望外层颜色完全透明。如何实现?
答案1
显然,您需要首先定义具有透明度的淡入淡出:
\documentclass[tikz,margin=1pt]{standalone}
\usetikzlibrary{fadings}
\tikzfading
[name = viesturs fading,
inner color = transparent!0,
outer color = transparent!100]
\begin{document}
\begin{tikzpicture}
\fill[blue](-0.5, -0.5) rectangle(0, 0.5);
\fill[green](0, -0.5) rectangle(0.5, 0.5);
\path[path fading = viesturs fading, inner color = red](0, 0) circle(0.3);
\end{tikzpicture}
\end{document}