py2ls 0.2.4.9.7__py3-none-any.whl → 0.2.4.9.9__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- py2ls/data/styles/stylelib/.DS_Store +0 -0
- py2ls/data/styles/stylelib/grid.mplstyle +15 -0
- py2ls/data/styles/stylelib/high-contrast.mplstyle +6 -0
- py2ls/data/styles/stylelib/high-vis.mplstyle +4 -0
- py2ls/data/styles/stylelib/ieee.mplstyle +15 -0
- py2ls/data/styles/stylelib/light.mplstyl +6 -0
- py2ls/data/styles/stylelib/muted.mplstyle +6 -0
- py2ls/data/styles/stylelib/nature-reviews-latex.mplstyle +616 -0
- py2ls/data/styles/stylelib/nature-reviews.mplstyle +616 -0
- py2ls/data/styles/stylelib/nature.mplstyle +31 -0
- py2ls/data/styles/stylelib/no-latex.mplstyle +10 -0
- py2ls/data/styles/stylelib/notebook.mplstyle +36 -0
- py2ls/data/styles/stylelib/paper.mplstyle +232 -0
- py2ls/data/styles/stylelib/retro.mplstyle +4 -0
- py2ls/data/styles/stylelib/sans.mplstyle +10 -0
- py2ls/data/styles/stylelib/scatter.mplstyle +7 -0
- py2ls/data/styles/stylelib/science.mplstyle +48 -0
- py2ls/data/styles/stylelib/std-colors.mplstyle +4 -0
- py2ls/data/styles/stylelib/vibrant.mplstyle +6 -0
- {py2ls-0.2.4.9.7.dist-info → py2ls-0.2.4.9.9.dist-info}/METADATA +3 -6
- {py2ls-0.2.4.9.7.dist-info → py2ls-0.2.4.9.9.dist-info}/RECORD +22 -3
- {py2ls-0.2.4.9.7.dist-info → py2ls-0.2.4.9.9.dist-info}/WHEEL +0 -0
Binary file
|
@@ -0,0 +1,15 @@
|
|
1
|
+
# Add grid lines and turn the legend frame on
|
2
|
+
|
3
|
+
# Grid lines
|
4
|
+
axes.grid : True
|
5
|
+
axes.axisbelow : True
|
6
|
+
grid.linestyle : --
|
7
|
+
grid.color : k
|
8
|
+
grid.alpha : 0.5
|
9
|
+
grid.linewidth : 0.5
|
10
|
+
|
11
|
+
# Legend
|
12
|
+
legend.frameon : True
|
13
|
+
legend.framealpha : 1.0
|
14
|
+
legend.fancybox : True
|
15
|
+
legend.numpoints : 1
|
@@ -0,0 +1,15 @@
|
|
1
|
+
# Matplotlib style for IEEE plots
|
2
|
+
# This style should work for most two-column journals
|
3
|
+
|
4
|
+
# Set color cycle
|
5
|
+
# Set line style as well for black and white graphs
|
6
|
+
axes.prop_cycle : (cycler('color', ['k', 'r', 'b', 'g']) + cycler('ls', ['-', '--', ':', '-.']))
|
7
|
+
|
8
|
+
# Set default figure size
|
9
|
+
figure.figsize : 3.3, 2.5
|
10
|
+
figure.dpi : 600
|
11
|
+
|
12
|
+
# Font sizes
|
13
|
+
font.size : 8
|
14
|
+
font.family : serif
|
15
|
+
font.serif : Times
|