私は、data.txt を CSV 値として次のコードをコンパイルしようとしています。ポイントは、テキスト内では完璧に動作するのですが、スタンドアロン モードで実行しようとすると、TexStudio が停止してしまうことです。また、コマンドは、コードの後に表示される出力で中断します。
\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.
ここで何が間違っているのでしょうか? 乾杯、