blob: c1fdc76c001551812aa2c8e356b61c3509d3ce8d [file] [log] [blame]
avm99963de16cf62021-01-21 13:00:04 +01001#!/usr/bin/env gnuplot -c
2metall="ferro"
3outputfile="../output/".metall
4datafolder="../data/".metall."/"
5
6# == CONFIGURACIÓ DE L'OUTPUT PEL LATEX ==
7set terminal cairolatex size 11cm, 8cm
8set output outputfile.'.tex'
9
10# == CONFIGURACIÓ DEL PLOT ==
11set xlabel '$t \, (\si{\second})$'
12set ylabel '$T \, (\si{\celsius})$'
13
14# Opcions per la llegenda:
15set key above
16set key spacing 1.5
17
18set xtics 1000
19
20plot datafolder.'10.dat' u 1:3:4 w yerr t '$x = \SI{10}{\centi\meter}$', \
21 datafolder.'20.dat' u 1:3:4 w yerr t '$x = \SI{20}{\centi\meter}$'
22
23# == CONFIGURACIÓ DE L'OUTPUT PER SVG ==
24# Això ho uso per generar també una imatge de previsualització que puc carregar
25# a l'ordinador per veure més o menys com a sortit el plot sense haver
26# d'inserir-ho al LaTeX per veure-ho.
27set terminal svg dashed size 600, 600 font "Computer Modern,Tinos,Helvetica,15"
28set output outputfile.'.svg'
29
30replot