在将 pstricks 与 auto-pst-pdf 结合使用时出现了一个奇怪的问题,当我使用 latex +dvips +ps2pdf 时,两个颜色名称系统(svgnames 和 dvipsnames)可以同时正常工作,而使用 pdflatex 时,只有 svgnames 的颜色可以工作,而 dvipsnames 的颜色则消失了。颜色的 dvipsname 系统与 auto-pst-pdf 不兼容?
\documentclass{article}
\usepackage[dvipsnames,svgnames]{pstricks}
\usepackage{auto-pst-pdf}
\begin{document}
\psframe[linewidth=0.2pt,fillstyle=solid,fillcolor=AliceBlue](0,0)(0.4,0.3)
\psframe[linewidth=0.2pt,fillstyle=solid,fillcolor=Apricot](1,0)(0.4,0.3)
\end{document}