We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 08c46c0 commit 4ce5233Copy full SHA for 4ce5233
lectures/ifp_advanced.md
@@ -42,6 +42,11 @@ tags: [hide-output]
42
43
```{code-cell} ipython
44
import matplotlib.pyplot as plt
45
+import matplotlib as mpl
46
+FONTPATH = "fonts/SourceHanSerifSC-SemiBold.otf"
47
+mpl.font_manager.fontManager.addfont(FONTPATH)
48
+plt.rcParams['font.family'] = ['Source Han Serif SC']
49
+
50
import numpy as np
51
from numba import jit, float64
52
from numba.experimental import jitclass
@@ -598,4 +603,4 @@ plt.show()
598
603
```
599
604
600
605
```{solution-end}
601
-```
606
+```
0 commit comments