Skip to content
Snippets Groups Projects
Commit e43923a0 authored by Daniel Brown's avatar Daniel Brown
Browse files

Merge branch 'master' of gitmaster.atlas.aei.uni-hannover.de:pykat/pykat

parents c8935b52 820aebfa
No related branches found
No related tags found
No related merge requests found
...@@ -46,11 +46,11 @@ def init_pykat_plotting(mode="display", dpi=100): ...@@ -46,11 +46,11 @@ def init_pykat_plotting(mode="display", dpi=100):
pgf_with_pdflatex = { pgf_with_pdflatex = {
"pgf.texsystem": "pdflatex", "pgf.texsystem": "pdflatex",
"pgf.preamble": [ "pgf.preamble": [
r"\usepackage{amsmath, amssymb}", r"\\usepackage{amsmath, amssymb}",
r"\usepackage{mathtools, siunitx}" , r"\\usepackage{mathtools, siunitx}" ,
r"\usepackage{amsmath}", r"\\usepackage{amsmath}",
r"\usepackage[utf8x]{inputenc}", r"\\usepackage[utf8x]{inputenc}",
r"\usepackage[T1]{fontenc}" r"\\usepackage[T1]{fontenc}"
] ]
} }
...@@ -58,7 +58,10 @@ def init_pykat_plotting(mode="display", dpi=100): ...@@ -58,7 +58,10 @@ def init_pykat_plotting(mode="display", dpi=100):
else: else:
raise(BaseException("Plotting mode must be either 'display' or 'paper'.")) raise(BaseException("Plotting mode must be either 'display' or 'paper'."))
if (mpl.__version__ < '1.5'):
mpl.rcParams['axes.color_cycle'] = ['b', 'r', 'k', 'g', 'c', 'm', 'y'] mpl.rcParams['axes.color_cycle'] = ['b', 'r', 'k', 'g', 'c', 'm', 'y']
else:
mpl.rcParams['axes.prop_cycle']=mpl.cycler('color', ['b', 'r', 'k', 'g', 'c', 'm', 'y'])
mpl.rcParams['lines.linewidth'] = 1.2 mpl.rcParams['lines.linewidth'] = 1.2
mpl.rcParams.update({"figure.figsize": (6, 3.708)}) mpl.rcParams.update({"figure.figsize": (6, 3.708)})
mpl.rcParams.update({'font.size': 11}) mpl.rcParams.update({'font.size': 11})
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment