-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmatplotlibrc
108 lines (84 loc) · 3.27 KB
/
matplotlibrc
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
axes.axisbelow: true
axes.grid: false
axes.titlesize : 50
axes.labelsize : 38
axes.labelcolor: black
axes.edgecolor: white #f0f0f0
axes.facecolor: white
axes.titlepad: 60.0 ## pad between axes and title in points
axes.labelpad: 5.0 ## space between label and axis
axes.spines.left : True ## display axis spines
axes.spines.bottom : True
axes.spines.top : True
axes.spines.right : True
lines.markersize : 10
lines.solid_capstyle: butt
lines.color: C0
lines.markeredgecolor: auto
lines.markerfacecolor: auto
# Turn on minor ticks, top and right axis ticks, and change the direction to "in"
xtick.top : True
ytick.right : True
xtick.minor.visible : True
ytick.minor.visible : True
ytick.direction : in
xtick.direction : in
# Increase the major and minor tick-mark lengths
xtick.major.size : 8 # default 3.5
ytick.major.size : 8 # default 3.5
xtick.minor.size : 3 # default 2
ytick.minor.size : 3 # default 2
# Change the tick-mark and axes widths, as well as the widths of plotted lines,
# to be consistent with the font weight
xtick.major.width : 1.3 # default 0.8
ytick.major.width : 1.3 # default 0.8
xtick.minor.width : 1 # default 0.6
ytick.minor.width : 1 # default 0.6
axes.linewidth : 1 # default 0.8
lines.linewidth : 1 # default 1.5
# Increase the padding between the ticklabels and the axes, to prevent
# overlap in the lower lefthand corner
xtick.major.pad : 8 # default 3.5
ytick.major.pad : 8 # default 3.5
xtick.minor.pad : 5 # default 3.5
ytick.minor.pad : 5 # default 3.5
xtick.labelsize : 32
ytick.labelsize : 32
legend.fancybox: false
legend.edgecolor: 0.8
legend.facecolor: inherit
legend.fontsize: 24
legend.frameon : False
legend.handletextpad : 0.3
#axes.prop_cycle : cycler('color', ['1f78b4', 'e31a1c', '33a02c', 'ff7f00', '6a3d9a', 'a6cee3', 'b2df8a', 'cab2d6', 'fb9a99', 'fdbf6f'])
axes.prop_cycle : cycler('color', [ '1D6996', 'E41A1C', '0F8554', 'E17C05', '94346E', '38A6A5', '73AF48', 'EDAD08', '666666'])
svg.fonttype: path
patch.edgecolor: black
patch.facecolor: C0
patch.force_edgecolor: False
patch.linewidth: 2
pdf.inheritcolor: False
scatter.edgecolors: face
text.color: black
xtick.color: black
ytick.color: black
# latex like font
mathtext.fontset: cm
text.usetex: true
font.family: serif
axes.formatter.use_mathtext: true
#text.latex.preamble : \usepackage{siunitx}
# ignore "More than 20 figures have been opened." warning
figure.max_open_warning: 0
## ***************************************************************************
## * SAVING FIGURES *
## ***************************************************************************
## The default savefig params can be different from the display params
## e.g., you may want a higher resolution, or to make the figure
## background white
savefig.dpi : figure ## figure dots per inch or 'figure'
savefig.format : pdf ## {png, ps, pdf, svg}
savefig.bbox : tight ## {tight, standard}
savefig.pad_inches : 0.3 ## Padding to be used when bbox is set to 'tight'
savefig.edgecolor: white
savefig.facecolor: white