我想更改jupyterlab中所有单元的默认fontFamily。我可以在高级设置编辑器中编辑代码,降价和原始单元格的配置。但是输出单元格仍使用默认的SourceCodePro字体。有没有办法改变呢?
答案 0 :(得分:1)
显然,此功能尚未实现。看到这里:https://github.com/jupyterlab/jupyterlab/issues/5764
通过首先安装扩展名jupyterlab-fonts,然后将文件--jp-code-font-family
中的~/.jupyter/lab/user-settings/@deathbeds/jupyterlab-fonts/fonts.jupyterlab-settings
参数更改为此,来解决此问题:
{
// Fonts
// @deathbeds/jupyterlab-fonts:fonts
// Settings for JupyterLab Fonts
// *********************************
// Global Styles
// JSS-compatible JSON applied to the Global scope
"styles": {
":root": {
"--jp-code-font-family": "monospace"
}
}
}
答案 1 :(得分:0)
在 jupyterlab 中打开 settings
> Theme
,在 overides
上更改 code-font-family
{
"overrides": {
"code-font-family": "monospace",
"code-font-size": "13px"
}
}