jupyterLab 如何修改字体大小

时间:2025-04-22 08:08:26
{ // Notebook // @jupyterlab/notebook-extension:tracker // Notebook settings. // ************************************** // Code Cell Configuration // The configuration for all code cells. "codeCellConfig": { "autoClosingBrackets": true, "fontFamily": null, "fontSize": 15, "lineHeight": null, "lineNumbers": true, "lineWrap": "off", "matchBrackets": true, "readOnly": false, "insertSpaces": true, "tabSize": 4, "wordWrapColumn": 80 }, // Markdown Cell Configuration // The configuration for all markdown cells. "markdownCellConfig": { "autoClosingBrackets": false, "fontFamily": null, "fontSize": 15, "lineHeight": null, "lineNumbers": false, "lineWrap": "on", "matchBrackets": false, "readOnly": false, "insertSpaces": true, "tabSize": 4, "wordWrapColumn": 80 }, // Raw Cell Configuration // The configuration for all raw cells. "rawCellConfig": { "autoClosingBrackets": false, "fontFamily": null, "fontSize": 15, "lineHeight": null, "lineNumbers": false, "lineWrap": "on", "matchBrackets": false, "readOnly": false, "insertSpaces": true, "tabSize": 4, "wordWrapColumn": 80 } }