jupyter notebook怎么更改字体
时间: 2023-06-05 08:06:49 浏览: 513
jupyter notebook清除输出方式
我们可以通过在 jupyter notebook 中添加 css 文件来更改字体样式。具体步骤如下:
1. 打开 jupyter notebook。
2. 在命令行中输入以下命令以创建一个 css 文件: `!echo "@font-face { font-family: myfont; src: url('https://fonts.gstatic.com/s/materialicons/v55/flUhRq6tzZclQEJ-Vdg-IuiaDsNc.woff2'); } .CodeMirror pre { font-family: myfont !important; }" > custom.css`
其中,`font-family` 可以替换为你想要使用的字体名称;`src` 中的链接为你想要使用的字体文件的链接,可以从 Google Fonts 等网站上下载。这里使用的是 Material Icons 字体。
3. 在 jupyter notebook 中打开 `File` -> `Open`,找到 `custom.css`,并打开它。
4. 关闭 jupyter notebook,并重新打开。字体样式会更改为你所指定的字体。
阅读全文