pip install jupyterthemes
2. 查看可用jupyter主题:
jt -l
3. 使用主题:(执行后刷新网页)
jt -t onedork -f fira -fs 13 -cellw 90% -ofs 11 -dfs 11 -T -T
其中:-t 主题 -f(字体) -fs(字体大小) -cellw(占屏比或宽度) -ofs(输出段的字号) -T(显示工具栏) -T(显示自己主机名)
4. 恢复默认主题:
jt -r
import matplotlib
import matplotlib.pyplot as plt
%matplotlib inline
%config InlineBackend.figure_format = 'svg'
指定了输出格式是svg,浏览器就能为你渲染矢量图了。
2. 只要指定文件名后缀是 .pdf 或者 .eps 就能生成能方便地插入 latex 的图片了:
plt.savefig('tmp.pdf', bbox_inches='tight')
plt.show()
jt -t
jt -r