jupyter自定义字体和大小、主题安装实例及效果图

 

我目前的jupyter notebook字体是按这样配置的:

jt -t grade3 -T -f source -tf robotosans -tfs 12 -nf robotosans -nfs 13 -cellw 90%

这个命令的详解如下:

jt

安装主命令

-t grade3

安装grade3主题

-T

显示jupyter notebook工具栏

-f source

指定代码的字体为"source"字体

-fs 11

指定代码的字体为11号

-tf robotosans

指定文本(markdwon)字体(font)为"robotosans"字体

-tfs 12

指定文本(markdown)字体大小(font-size)为12号

-nf robotosans

指定notebook的界面字体(font)为"robotosans"字体

-nfs 13

指定notebook的界面字体(font)为13号

 

配置后的效果是这样的,如下。大家觉得怎么样?

jupyter自定义字体和大小、主题安装实例及效果图_第1张图片

你可能感兴趣的:(Python)