使用 tikzpicture 时出现填充问题

使用 tikzpicture 时出现填充问题

相关问题,我的代码:

\begin{tikzpicture} 
\begin{axis}

[domain=0:12, samples=100,grid=major,     
domain=1:4, xlabel=$\lambda$, ylabel=$f$, legend pos=north west, no marks] 

\addplot [red,fill=orange!70]    {(0.1)*x^8+x^3/3+(0.1)*x^2+5/3}; 

\addplot [blue,name path=A] {(0.1)*x^8-x^6-(0.3)*x^2-1}; 

\addplot+[name path=B] {0};     

\addplot+[gray] fill between[of=A and B,{domain=1:4}];

\legend{$f_1$, $f_2$} 
\end{axis} 
\end{tikzpicture}

给了:

enter image description here

在一台计算机上运行,​​但在另一台计算机上失败,并显示以下消息:

I can't find 'usepgfplotslibrarypgfplot.fillbetween.code.tex'.

我在第二台计算机上重新安装了 Lyx 和 Texlive,但结果还是一样。

怎么了?

谢谢。

PS:我的序言是:

\usepackage{pgfplots}
\usetikzlibrary{positioning}
\pgfplotsset{compat=newest}
\usepgfplotslibrary{fillbetween}

我正在使用 Lyx,但上面的代码是在 Latex 框架(Control+L)内给出的。

相关内容