我一直在使用fadings
PGF 中的库,但在使用 externalize 时遇到了问题。
我终于明白了,它确实有效,但 Apple 的预览在外部化时不会显示淡入淡出效果。我用 Adobe Acrobat 打开了 PDF,淡入淡出效果很好。
还有其他人遇到过这个问题或知道这是否是 PGF 或 Apple 预览版中的错误吗?
\includegraphics
下面是使用and 的示例\pgfuseimage
:
\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{external}
\usetikzlibrary{fadings}
\tikzexternalize
\begin{document}
% Three color triangles
\begin{tikzpicture}
\fill[green] (90:4) -- (210:4) -- (-30:4) -- cycle;
\fill[blue,path fading=west] (90:4) -- (210:4) -- (-30:4) -- cycle;
\fill[red,path fading=south] (90:4) -- (210:4) -- (-30:4) -- cycle;
\end{tikzpicture}
\includegraphics{\jobname-figure0.pdf}
\pgfdeclareimage{fig0}{\jobname-figure0.pdf}
\pgfuseimage{fig0}
\end{document}
左边是 Adobe Acrobat,右边是 Apple Preview:
编辑:接下来是预览中的上述文档与预览中的外部化图像之间的比较