-
Notifications
You must be signed in to change notification settings - Fork 66
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: add plothist style * chore: bump mplhep_data * chore: remove restyled * chore: file org * fix: redundancy
- Loading branch information
1 parent
19f9523
commit 6f4b23f
Showing
6 changed files
with
72 additions
and
3 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
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
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 |
---|---|---|
@@ -0,0 +1,60 @@ | ||
from cycler import cycler | ||
|
||
PLOTHIST = { | ||
# General Settings | ||
"figure.figsize": (6, 4), | ||
"figure.facecolor": "white", | ||
# "text.color" : .1, | ||
# Fonts | ||
"font.size": 15, | ||
"xtick.labelsize": 15, | ||
"ytick.labelsize": 15, | ||
"axes.labelsize": 18, | ||
"legend.fontsize": 12, | ||
# "axes.labelcolor" : .1, | ||
"text.usetex": False, | ||
"font.family": ["serif", "sans-serif"], | ||
"font.serif": ["Latin Modern Math", "Latin Modern Roman"], | ||
"font.sans-serif": ["Latin Modern Sans"], | ||
# Text in math mode | ||
"mathtext.fontset": "cm", | ||
"mathtext.default": "regular", | ||
"legend.frameon": False, | ||
"legend.framealpha": 0.5, | ||
# Ticks | ||
"xtick.direction": "in", | ||
"ytick.direction": "in", | ||
# "xtick.color" : .1, | ||
# "ytick.color" : .1, | ||
"xtick.minor.visible": True, | ||
"ytick.minor.visible": True, | ||
"ytick.left": True, | ||
"ytick.right": False, | ||
"xtick.top": False, | ||
"xtick.bottom": True, | ||
"xtick.major.size": 6, | ||
"ytick.major.size": 6, | ||
"xtick.minor.size": 3, | ||
"ytick.minor.size": 3, | ||
"xtick.major.pad": 8.0, | ||
"ytick.major.pad": 5.0, | ||
"axes.axisbelow": False, | ||
"image.cmap": "viridis", | ||
"grid.linestyle": "-", | ||
"lines.solid_capstyle": "round", | ||
"axes.grid": False, | ||
"axes.facecolor": "white", | ||
# "axes.edgecolor" : .0, | ||
"axes.linewidth": 1, | ||
"axes.formatter.limits": (-4, 4), | ||
"axes.prop_cycle": cycler( | ||
"color", | ||
["#348ABD", "#E24A33", "#988ED5", "#777777", "#FBC15E", "#8EBA42", "#FFB5B8"], | ||
), | ||
"axes.formatter.use_mathtext": True, | ||
"axes.formatter.useoffset": False, | ||
"axes.labelpad": 6, | ||
# "grid.color" : .8, | ||
"errorbar.capsize": 0, | ||
# "svg.hashsalt" : 8311311 | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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