22 lines
1.1 KiB
Gnuplot
Executable File
22 lines
1.1 KiB
Gnuplot
Executable File
set terminal epslatex font 8 color dashed
|
|
set output './ModeleLaTeX_TP-gnuplottex-fig22.tex'
|
|
set format '\num{%g}'
|
|
set key top right Left
|
|
set key width 6
|
|
set key heigh 1
|
|
set key spacing 1.5
|
|
|
|
set xlabel 'Temps t (\si{\hour})' # attention il faut parfois utiliser certains guillemets
|
|
# notamment quand on utilise la commande \si, il faut impérativement des primes '...'
|
|
set ylabel 'Tension U (\si{\volt})'
|
|
|
|
#set style line 1 lt 0 lw 4
|
|
|
|
plot [0:15][0:10]\
|
|
'gene/Accu_Varta_200mAh_9V.txt' index 0 u ($1/3600):2:3:4 title 'VARTA' pt 2 lc 'dark-blue' w xyerrorbars,\
|
|
'gene/Accu_Energizer_175mAh_9V.txt' index 0 u ($1/3600):2:3:4 title 'ENERGIZER' pt 2 lc 'blue' w xyerrorbars,\
|
|
'gene/Accu+Ultra_150mAh_9V.txt' index 0 u ($1/3600):2:3:4 title 'ACCU ULTRA' pt 2 lc 'light-blue' w xyerrorbars,\
|
|
'gene/Accu_Ansmann_200mAh_8.4V.txt' index 0 u ($1/3600):2:3:4 title 'ANSMAN' pt 2 lc 'light-red' w xyerrorbars,\
|
|
'gene/Accu_Mpower_150mAh_8.4V.txt' index 0 u ($1/3600):2:3:4 title 'M POWER' pt 2 lc 'red' w xyerrorbars,\
|
|
'gene/Accu_Duracell_170mAh_9V.txt' index 0 u ($1/3600):2:3:4 title 'DURACELL' pt 2 lc 'dark-red' w xyerrorbars
|