我做了一个奇怪的观察,包括morewrites
包在内的消除了不透明颜色tikzpicture
。
(本示例的代码如下所示。)
由于本论坛多次报告了软件包的不透明度问题tikz
,因此在这种情况下,很可能软件包就是morewrites
线索。仅供您参考。可能还有其他人更有能力调试此问题。
作为替代方案,我尝试了这些scrwfile
软件包。它正确地产生了透明度,但写入次数过多时失败了。
\documentclass[11pt,a4paper]{article}
\usepackage[tikz]{mdframed}
%\usepackage{morewrites}
\begin{document}
\begin{figure}[!htb]
\definecolor{c979797}{RGB}{151,151,151}
\definecolor{cc7c7c7}{RGB}{199,199,199}
\begin{tikzpicture}[y=0.60pt,x=0.60pt,yscale=-1, inner sep=0pt, outer sep=0pt]
\path[fill=c979797,rounded corners=0.0000cm] (214.2360,457.9447) rectangle
(231.4793,632.2944);
\path[draw=black,fill=c979797,miter limit=4.00,line width=0.813pt]
(673.2180,582.0061) .. controls (628.0447,595.2757) and (673.7736,582.0221) ..
(628.0573,595.2501) .. controls (589.7109,585.1109) and (587.9273,578.9819) ..
(630.7735,569.0304) .. controls (671.3900,581.4329) and (630.7730,568.9839) ..
(673.2180,582.0061) -- cycle;
\path[draw=black,fill=cc7c7c7,opacity=0.514,miter limit=4.00,line width=0.813pt]
(100.2528,568.7324) .. controls (100.2528,568.7324) and (602.8691,568.7324) ..
(628.2308,568.7324) .. controls (645.7917,568.7324) and (611.0254,595.2799) ..
(628.2308,595.2799) .. controls (645.4363,595.2799) and (100.2528,595.2799) ..
(100.2528,595.2799) -- cycle;
\end{tikzpicture}
\end{figure}
\end{document}