使用 pstricks 包时 pgfplots 中的不透明度问题

使用 pstricks 包时 pgfplots 中的不透明度问题

有人能告诉我为什么当我包含包“pstricks”时不透明度在 pgfplots 中不起作用以及我该如何修复它?

例如参见下面的代码:

    \documentclass{standalone}

    \usepackage{pgfplots,pgfplotstable}
    \usepgfplotslibrary{fillbetween}
    \pgfplotsset{compat=1.12}

    \usepackage{pstricks}

    \begin{document}

    \begin{tikzpicture} 
        \begin{axis}[enlargelimits=0.1]
        \addplot[name path=f,domain=-.15:1.05,blue, draw=none] {x^2};
        \addplot[name path=g, domain=.15:1.05,blue, draw=none] {x^3}; 

        \addplot [
            fill=orange, 
            opacity=0.4
        ]
        fill between[
            of=f and g,
            soft clip={domain=0:1},
        ];

        \end{axis}
    \end{tikzpicture}  

    \end{document}

像这样,不透明度对我来说不起作用,但如果我删除\usepackage{pstricks}它就可以正常工作。

相关内容