-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add helper function for saving figure in multiple formats * Fix behaviour of `save_figs` when single format string passed * Make check simpler * flake8 fix
- Loading branch information
Showing
2 changed files
with
30 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,50 +1,50 @@ | ||
# Figure settings | ||
savefig.dpi : 600 | ||
figure.constrained_layout.use : True | ||
savefig.dpi: 600 | ||
figure.constrained_layout.use: True | ||
|
||
|
||
# Axes settings | ||
axes.spines.top : False | ||
axes.spines.right : False | ||
axes.labelpad : 8.0 | ||
axes.xmargin : 0 | ||
axes.ymargin : 0 | ||
axes.spines.top: False | ||
axes.spines.right: False | ||
axes.labelpad: 8.0 | ||
axes.xmargin: 0 | ||
axes.ymargin: 0 | ||
|
||
|
||
# Font settings | ||
font.family : sans-serif | ||
font.sans-serif : CMU Bright | ||
axes.unicode_minus : False | ||
font.size : 18 | ||
font.family: sans-serif | ||
font.sans-serif: CMU Bright | ||
axes.unicode_minus: False | ||
font.size: 18 | ||
|
||
axes.labelweight : bold | ||
axes.labelweight: bold | ||
|
||
xtick.labelsize : small | ||
ytick.labelsize : small | ||
xtick.labelsize: small | ||
ytick.labelsize: small | ||
|
||
text.latex.preamble : r"\usepackage{cmbright}" | ||
text.latex.preamble: r"\usepackage{cmbright}" | ||
mathtext.default: regular | ||
pgf.rcfonts : True | ||
pgf.rcfonts: True | ||
|
||
|
||
# Legend settings | ||
legend.columnspacing : 0.2 | ||
legend.frameon : False | ||
legend.columnspacing: 1.0 | ||
legend.frameon: False | ||
|
||
|
||
# Line settings | ||
lines.linewidth : 2.0 | ||
lines.markeredgewidth : 1.0 | ||
lines.linewidth: 2.0 | ||
lines.markeredgewidth: 1.0 | ||
|
||
# Color settings | ||
axes.prop_cycle : cycler('color', ['e29400ff', '1E90FF', 'E21A1A', '00a650ff', '800000ff', 'ff8f00', '800080ff', '00A6D6', '000000ff']) | ||
axes.prop_cycle: cycler('color', ['e29400ff', '1E90FF', 'E21A1A', '00a650ff', '800000ff', 'ff8f00', '800080ff', '00A6D6', '000000ff']) | ||
|
||
# Use this parameter, which (hopefully) nobody will ever use, to store text the names of the colors in the color cycle | ||
keymap.help : Yellow, Blue, Red, Green, Maroon, Orange, Purple, Cyan, Black | ||
|
||
lines.markeredgecolor : w | ||
axes.edgecolor : 5a5758ff | ||
text.color : 5a5758ff | ||
axes.labelcolor : 5a5758ff | ||
xtick.color : 5a5758ff | ||
ytick.color : 5a5758ff | ||
keymap.help: Yellow, Blue, Red, Green, Maroon, Orange, Purple, Cyan, Black | ||
|
||
lines.markeredgecolor: w | ||
axes.edgecolor: 5a5758ff | ||
text.color: 5a5758ff | ||
axes.labelcolor: 5a5758ff | ||
xtick.color: 5a5758ff | ||
ytick.color: 5a5758ff |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters