-
Notifications
You must be signed in to change notification settings - Fork 0
/
sci_style.py
42 lines (42 loc) · 1005 Bytes
/
sci_style.py
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
# Figure properties
figure.figsize: 3, 2
figure.dpi: 300
# Font properties
font.family: sans-serif
font.sans-serif: Arial
font.size: 6
axes.labelsize: 6.5 # Specify the font size for xlabel and ylabel
axes.titlesize: 8 # Specify the font size for the title
legend.fontsize: 6
# Axes properties
axes.linewidth: 0.5
axes.labelpad: 6
axes.prop_cycle: cycler(color=['008fd5', 'fc4f30', 'e5ae38', '6d904f', '8b8b8b', '810f7c'])
axes.titlepad: 8
# Tick properties
# x-axis
xtick.top: False
axes.spines.top: False
xtick.direction: in
xtick.major.size: 2
xtick.major.width: 0.5
xtick.minor.size: 1
xtick.minor.width: 0.5
xtick.labelsize: 6
# y-axis
ytick.right: False
axes.spines.right: False
ytick.direction: in
ytick.major.size: 2
ytick.major.width: 0.5
ytick.minor.size: 1
ytick.minor.width: 0.5
ytick.labelsize: 6
# Line properties
lines.linewidth: 0.5
lines.markersize: 0.005
# Legend properties
legend.framealpha: 1
legend.frameon: False
# Scatter properties
scatter.marker : o # Use circles as markers