Ian Jauslin
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'figs/bands_second.fig/bands_second.gnuplot')
-rw-r--r--figs/bands_second.fig/bands_second.gnuplot42
1 files changed, 42 insertions, 0 deletions
diff --git a/figs/bands_second.fig/bands_second.gnuplot b/figs/bands_second.fig/bands_second.gnuplot
new file mode 100644
index 0000000..51f8949
--- /dev/null
+++ b/figs/bands_second.fig/bands_second.gnuplot
@@ -0,0 +1,42 @@
+#!/usr/bin/env gnuplot
+
+datafile="bands_second.dat"
+# output
+outfile="bands_second_plot.tex"
+set output outfile
+
+# terminal
+set term lua tikz size 10,6 standalone tightboundingbox
+
+# format axes
+set key off
+unset colorbox
+unset border
+unset xtics
+unset ytics
+unset ztics
+
+# colors
+## 4169E1 (pastel blue)
+## FF143C (bright red)
+## 32CD32 (bright green)
+## DAA520 (ochre)
+
+# angle camera
+set view 90,50
+
+# style for mesh lines
+set style line 1 linetype rgbcolor "#000000"
+
+# splot mode
+set pm3d hidden3d depthorder
+
+# set colors
+set palette defined (0 "#DAA520",0.33 "#FF143C", 0.66 "#32CD32",1 "#4169E1")
+
+# plot
+splot datafile using 1:2:3:4 with pm3d linestyle 1 , \
+ datafile using 5:6:7:8 with pm3d linestyle 1 , \
+ datafile using 9:10:11:12 with pm3d linestyle 1 , \
+ datafile using 13:14:15:16 with pm3d linestyle 1
+