
親ルートの別のフォルダーに「tikz 外部ライブラリ」を使用して画像を保存する簡単な方法はありますか。
%File C:/project/tikz/main.tex
\documentclass{article}
\usetikzlibrary{external}
\tikzexternalize[prefix = ../figs/]% Should refer to C:/project/figs
\begin{document}
\begin{center}
\tikzsetnextfilename{picture1}
\begin{tikzpicture}
\draw (0,0) rectangle (4,4);
\end{tikzpicture}
\end{center}
\end{document}
tikzexternalize[prefix = ./figs]
コード内でオプションを使用したところ、tikz
現在のフォルダー内に新しいフォルダーが作成され、期待どおりに移動できませんでした。