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}

준:

여기에 이미지 설명을 입력하세요

한 컴퓨터에서는 실패하지만 다른 컴퓨터에서는 다음 메시지가 표시됩니다.

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

두 번째 컴퓨터에 Lyx와 Texlive를 다시 설치했지만 동일한 결과가 나타납니다.

무슨 일이 일어나고 있나요?

감사합니다.

추신: 내 서문은 다음과 같습니다.

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

저는 Lyx에서 작업 중이지만 위의 코드는 Latex 프레임(Control+L) 내부에 제공됩니다.

관련 정보