외부 파일의 입력으로 독립형 Figure 컴파일

외부 파일의 입력으로 독립형 Figure 컴파일

data.txt를 CSV 값으로 사용하여 다음 코드를 컴파일하려고 합니다. 요점은 텍스트 내에서 완벽하게 작동하지만 독립형 모드에서 그렇게 하면 TexStudio가 중단된다는 것입니다. 또한 cmd는 코드 뒤에 표시된 출력으로 중단됩니다.

  \documentclass{standalone}
 % The following inclusions are required for the LaTeX drawing environment Tikz
 \usepackage{tikz} 
 \usepackage{pgfplots}

 \usetikzlibrary{arrows, calc, external}
 \tikzexternalize

 \usepackage[europeanresistors,americaninductors]{circuitikz}

 \begin{document}

     \begin{tikzpicture}
         \begin{axis}
          \addplot+[mark = none, solid, black] table [x=theta, y=h0, col sep=comma] {RP_16_50.txt};
         \addlegendentry{$f_0$};
          \addplot+[mark = none, dotted, black] table [x=theta, y=h1, col sep=comma] {RP_16_50.txt};
          \addlegendentry{$f_0 + f_B$};
          \addplot+[mark = none, dashed, black] table [x=theta, y=h_1, col sep=comma] {RP_16_50.txt};
\addlegendentry{$f_0 - f_B$};
\end{axis}
\end{tikzpicture}
\end{document}

CMD 출력은 다음과 같습니다.

 Output written on TRY_FIELD.pdf (1 page, 21585 bytes).SyncTeX: Can't rename TRY_FIELD.synctex.gz(busy) to TRY_FIELD.synctex.gz
 Transcript written on TRY_FIELD.log.

여기서 잘못된 점은 무엇입니까? 건배,

관련 정보