jupyter notebook字体大小
时间: 2023-04-23 21:00:47 浏览: 746
Jupyter notebook设置背景主题,字体大小及自动补全代码的操作
5星 · 资源好评率100%
在 Jupyter notebook 中调整字体大小的方法有多种,其中一种是使用 CSS 样式。您可以在 Jupyter notebook 的首页上找到 "File" -> "Open",然后选择 "New Notebook"。在新建的 notebook 中,点击 "View" -> "Cell Toolbar" -> "Edit Metadata",在弹出的窗口中添加以下代码:
```
<style>
div.cell{
font-size:18px;
}
</style>
```
然后将 18 替换为您想要的字体大小。
另一种方法是在 Jupyter notebook 的命令模式下,输入以下命令:
```
from IPython.core.display import display, HTML
display(HTML("<style>.container { width:100% !important; }</style>"))
```
再输入以下命令,将字体大小调整为18号字:
```
display(HTML("<style>div.cell{font-size:18px;}</style>"))
```
需要注意的是,这些方法只能更改当前 notebook 的字体大小,如果要更改所有 notebook 的字体大小,需要在 jupyter_notebook_config.py 中进行设置。
阅读全文