Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Stylefile resolve #177

Merged
merged 9 commits into from
Aug 26, 2020
Merged
Show file tree
Hide file tree
Changes from 8 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
58 changes: 58 additions & 0 deletions docs/source/probnum.mplstyle
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
# https://matplotlib.org/3.2.1/tutorials/introductory/customizing.html


# Formats
text.usetex : True
text.latex.preamble : \usepackage[cm]{sfmath} \usepackage{amsmath, amssymb} \usepackage{bm}\renewcommand{\familydefault}{\sfdefault}
figure.figsize: 9.9, 5.5
figure.dpi : 150
savefig.format : pdf

# default python colors, but PN orange and PN green are swapped in for orange and green
# (and the first three colors are swapped around so the PN colors are on the top)
axes.prop_cycle : cycler('color', ['FF9933', '107D79', '1F77B4', 'D62728', '9467BD', '8C564B', 'E377C2', '7F7F7F', 'BCBD22', '17BECF'])

# Linestyles, Markers, etc.
lines.linewidth : 2.0
lines.markersize : 6.0
lines.dash_capstyle : round
lines.markeredgecolor : black
lines.markeredgewidth : 0.75

# Axes
axes.edgecolor : black
axes.linewidth : 1.5
axes.spines.right : False
axes.spines.top : False
axes.titlesize : 18 # fontsize of the axes title
axes.labelsize : 18 # fontsize of the x any y labels

xtick.major.size : 6
xtick.minor.size : 6
ytick.major.size : 6
ytick.minor.size : 6

xtick.major.pad : 5
xtick.minor.pad : 5
ytick.major.pad : 5
ytick.minor.pad : 5

xtick.major.width : 1.5
xtick.minor.width : 1.5
ytick.major.width : 1.5
ytick.minor.width : 1.5

xtick.labelsize : 18
ytick.labelsize : 18

# Fonts
font.size: 16

# Others
grid.linestyle: -
grid.linewidth: 1
legend.framealpha : 1.
legend.frameon: True
legend.fancybox: False
legend.edgecolor: black
legend.fontsize : 18
109,839 changes: 54,671 additions & 55,168 deletions docs/source/tutorials/adaptive_steps_odefilter.ipynb

Large diffs are not rendered by default.

13,712 changes: 6,775 additions & 6,937 deletions docs/source/tutorials/galerkin_method.ipynb

Large diffs are not rendered by default.

889 changes: 409 additions & 480 deletions docs/source/tutorials/linear_operators.ipynb

Large diffs are not rendered by default.

919 changes: 415 additions & 504 deletions docs/source/tutorials/linear_systems.ipynb

Large diffs are not rendered by default.

Loading