Я пытаюсь скомпилировать следующий код с 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.
Что здесь не так? Спасибо,