#!/usr/bin/env -S gnuplot -c | |
outputfile = 'data_out/dep_en_T' # Nom de la imatge resultant (sense extensió) | |
datafile = 'data_out/dep_en_T.dat' | |
set terminal svg dashed size 600, 1200 font "Computer Modern,Tinos,Helvetica,15" | |
set output outputfile.'.svg' | |
set multiplot layout 2,1 | |
set title "Capacitat calorífica" | |
plot datafile using 2:10 with points | |
set title "Susceptibilitat magnètica" | |
plot datafile using 2:11 with points |