diff options
Diffstat (limited to 'code/sunlab/__init__.py')
-rw-r--r-- | code/sunlab/__init__.py | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/code/sunlab/__init__.py b/code/sunlab/__init__.py new file mode 100644 index 0000000..0ccac86 --- /dev/null +++ b/code/sunlab/__init__.py @@ -0,0 +1,17 @@ +from .common import * + +font = {"family": "DejaVu Sans", "weight": "regular", "size": 20} +import matplotlib + +matplotlib.rc("font", **font) + + +def set_font(ptsize=10): + font = {"family": "DejaVu Sans", "weight": "regular", "size": ptsize} + import matplotlib + + matplotlib.rc("font", **font) + + +def set_font_l(ptsize=20): + set_font(ptsize) |