-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgnuplot.2
More file actions
45 lines (35 loc) · 1.38 KB
/
gnuplot.2
File metadata and controls
45 lines (35 loc) · 1.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# Note you need gnuplot 4.4 for the pdfcairo terminal.
#set terminal x11 enhanced font "terminal-14"
set terminal x11 enhanced font "Gill Sans,12"
# set terminal pdf font "Gill Sans,12" linewidth 4 rounded fontscale 1.0
# Line style for axes
set style line 80 lt rgb "#808080"
# Line style for grid
set style line 81 lt 0 # dashed
set style line 81 lt rgb "#808080" # grey
set grid back linestyle 81
set border 3 back linestyle 80 # Remove border on top and right. These
# borders are useless and make it harder
# to see plotted lines near the border.
# Also, put it in grey; no need for so much emphasis on a border.
set xtics nomirror
set ytics nomirror
# load custom palettes
set loadpath '~/repos/gnuplot-colorbrewer/diverging' \
'~/repos/gnuplot-colorbrewer/qualitative' \
'~/repos/gnuplot-colorbrewer/sequential'
#set log x
#set mxtics 10 # Makes logscale look good.
# Line styles: try to pick pleasing colors, rather
# than strictly primary colors or hard-to-see colors
# like gnuplot's default yellow. Make the lines thick
# so they're easy to see in small plots in papers.
set style line 1 lt rgb "#A00000" lw 2 pt 1
set style line 2 lt rgb "#00A000" lw 2 pt 6
set style line 3 lt rgb "#5060D0" lw 2 pt 2
set style line 4 lt rgb "#F25900" lw 2 pt 9
#set xlabel "x axis label"
#set ylabel "y axis label"
set xlabel ""
set ylabel ""
# set key bottom right