blob: 9da674b8dd55ae820bde2c82bd5631bcc8a33d1d [file] [log] [blame]
avm9996333fc0572021-05-28 00:20:41 +02001#!/usr/bin/env gnuplot -c
2outputfile=ARG2
3datafile=ARG1
4
5y_error=10
6
7# == CONFIGURACIÓ DE L'OUTPUT PEL LATEX ==
8set terminal cairolatex size 11cm, 8cm
9set output outputfile.'.tex'
10
11# == CONFIGURACIÓ DEL PLOT ==
12set xlabel '$K_s \cdot d$'
13set ylabel '$Ra^*$'
14
15# Opcions per la llegenda:
16set key above
17set key spacing 1.5
18
19plot datafile u 4:5:(0):(y_error) w xyerr t "Dades"
20
21# == CONFIGURACIÓ DE L'OUTPUT PER SVG ==
22# Això ho uso per generar també una imatge de previsualització que puc carregar
23# a l'ordinador per veure més o menys com a sortit el plot sense haver
24# d'inserir-ho al LaTeX per veure-ho.
25set terminal svg dashed size 600, 600 font "Computer Modern,Tinos,Helvetica,15"
26set output outputfile.'.svg'
27
28replot