菜鸟笔记
提升您的技术认知

jupyterlab改变字体方法( 内容、markdown、代码、输出、ui字体,jupyterlab版本3.0.12)-ag真人游戏

jupyter lab默认字体较小,观察起来不太方便。由于jupyter lab版本变化比较频繁,改变字体的方法也不太稳定。适用版本:jupyterlab 3.0.12

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
}

注意:这种方法不能修改单元格输出的字体大小,而且会覆盖第一种方法的字体设置。

  1. 点击settings菜单中的advanced settings editor
  2. 在高级编辑器中选择notebook项,默认用户配置为空。
    3. 在用户配置中,输入以下内容并保存。
{
  
    "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目录中。

网站地图