Gnuplottex: LaTeX コマンドを gnuplot スクリプトに渡す

Gnuplottex: LaTeX コマンドを gnuplot スクリプトに渡す

異なるLaTeX文書(論文とビーマープレゼンテーション)から同じデータにアクセスしてプロットしたいのですが、gnuplottexデータと gnuplot スクリプトは、2 つのドキュメントを基準として個別の位置に保存されます。できるだけ多くのコードを再利用するために、各ドキュメントのデータへの相対パスをマクロで定義したいと思います\datapath

私の質問は、このコマンドの値を gnuplot スクリプトに渡すにはどうすればよいかということです。基本的に、MWE で以下を使用したいと思います。

plot \datapath'/data.csv' using 1:2 with lines

私は見つけたこのスレッドしかし、自分のニーズに合わせて変更することができませんでした。誰か助けてくれませんか?


ムウェ

\documentclass{article}

\usepackage[latin1]{inputenx}
\usepackage{filecontents}
\usepackage[
  miktex,    % 
  subfolder, % generated graphs in a ”gnuplottex” subfolder
  cleanup,   % Delete the .gnuplot files after conversion
]{gnuplottex}

\newcommand{\datapath}{./ZZZ}

\begin{document}

% This is the data file to be plotted from
\begin{filecontents*}{\datapath/data.csv}
Col1,Col2
0,0
1,1
\end{filecontents*}

% This is the gnuplot script I would like to use the value of \datapath in
\begin{filecontents*}{\datapath/script.gnuplot}
set key autotitle columnhead
set datafile separator "," # for csv-file
plot './ZZZ/data.csv' using 1:2 with lines
\end{filecontents*}

\begin{figure}[htbp]
\centering
\gnuplotloadfile[terminal=cairolatex]{\datapath/script.gnuplot}
\end{figure}

\end{document}

答え1

\immediate\write代わりに次のように実行できますfilecontents*:

\newwrite\tempfile

\immediate\openout\tempfile=\datapath/script.gnuplot
\immediate\write\tempfile{set key autotitle columnhead; 
set datafile separator ","; 
plot '\datapath/data.csv' using 1:2 with lines}
\immediate\closeout\tempfile

関連情報