Quiero acceder y trazar los mismos datos de diferentes documentos LaTeX (un documento y una presentación de proyector) usandognuplottex
. Los datos y el script gnuplot se almacenan en alguna posición individual en relación con los dos documentos. Para reutilizar la mayor cantidad de código posible, me gustaría definir la ruta relativa a los datos en cada documento en una macro, aquí \datapath
.
Mi pregunta es: ¿Cómo puedo pasar el valor de este comando al script gnuplot? Básicamente me gustaría usar lo siguiente en mi MWE:
plot \datapath'/data.csv' using 1:2 with lines
encontréeste hilo. Sin embargo, no pude modificarlo según mis necesidades. ¿Puede alguien ayudarme por favor?
MWE
\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}
Respuesta1
Puedes hacerlo con \immediate\write
en lugar de 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