我想使用不同的 LaTeX 文件(紙張和投影機簡報)存取並繪製相同的數據gnuplottex
。資料和 gnuplot 腳本儲存在相對於兩個文件的某個單獨位置。為了盡可能重複使用程式碼,我想在巨集中定義每個文件中資料的相對路徑,此處\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