aboutsummaryrefslogtreecommitdiff
path: root/code/sunlab/__init__.py
blob: 0ccac8689585bea78fbe5fa968c4f7edfd490676 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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)