Jupyter Lab
默认字体较小,观察起来不太方便。由于Jupyter Lab
版本变化比较频繁,改变字体的方法也不太稳定。适用版本:JupyterLab 3.0.12
。
Settings->Jupyterlab Theme
,生成themes.jupyterlab-settings
文件Settings
菜单Jupyterlab Theme
子菜单可改变字体大小,每次修改字体幅度为1px
,修改字体后,将生成themes.jupyterlab-settings
文件中,配置内容即保存在该文件。
Increase/Decrease Code Font Size
:增加/减小代码、输出单元格字体大小。Increase/Decrease Content Font Size
:增加/减小内容单元格字体大小。Increase/Decrease UI Font Size
:增加/减小UI字体大小。C:\Users\Administrator\.jupyter\lab\user-settings\@jupyterlab\apputils-extension\themes.jupyterlab-settings
"content-font-size1": "24px"
即内容字体大小。"code-font-size": "24px"
即代码和输出单元格字体大小。"ui-font-size1": "12px"
即UI字体大小。{
// Theme
// @jupyterlab/apputils-extension:themes
// Theme manager settings.
// *************************************
// Theme CSS Overrides
// Override theme CSS variables by setting key-value pairs here
"overrides": {
"content-font-size1": "24px",
"code-font-size": "24px",
"ui-font-size1": "12px"
},
// Scrollbar Theming
// Enable/disable styling of the application scrollbars
"theme-scrollbars": true
}
修改菜单后文件变化情况。
{
// Theme
// @jupyterlab/apputils-extension:themes
// Theme manager settings.
// *************************************
// Theme CSS Overrides
// Override theme CSS variables by setting key-value pairs here
"overrides": {
"content-font-size1": "25px",
"code-font-size": "24px",
"ui-font-size1": "15px"
},
// Selected Theme
// Application-level visual styling theme
"theme": "JupyterLab Light",
// Scrollbar Theming
// Enable/disable styling of the application scrollbars
"theme-scrollbars": false
}
Settings->Advanced Settings Editor
,生成tracker.jupyterlab-settings
文件注意:这种方法不能修改单元格输出的字体大小,而且会覆盖第一种方法的字体设置。
{
"codeCellConfig": {
"fontSize": 20,
},
"markdownCellConfig": {
"fontSize": 20,
},
"rawCellConfig": {
"fontSize": 20,
},
}
4. 配置保存后,将生成tracker.jupyterlab-settings
文件,文件内容如下:
{
"codeCellConfig": {
"fontSize": 26,
},
"markdownCellConfig": {
"fontSize": 26,
},
"rawCellConfig": {
"fontSize": 26,
},
}
建议使用第一种方法修改字体大小,这种方法可修改单元格输出结果的字体大小。
默认情况下,用户配置文件是不存在的,只有使用菜单或者高级设置编辑器修改字体配置后,才会产生配置文件。用户配置文件均保存在C:\Users\Administrator\.jupyter\lab\user-settings\@jupyterlab
目录中。