jupyter主题 - 默认主题但宽度100%

时间:2017-08-23 03:55:12

标签: anaconda jupyter-notebook jupyter

我开始使用jupyter主题:

https://github.com/dunovank/jupyter-themes

为了设置主题,我设置主题,然后启动jupyter notebook:

jt -t solarizedl -cellw 100%
jupyter notebook

但是,我想保留jupyter笔记本的默认设置,并且只将单元格加宽到100%。因此,我运行以下命令来恢复默认值,设置主题,然后启动。

jt -r
jt -cellw 100%
jupyter notebook

然而,这没有做任何事情;我的笔记本仍然是默认宽度,而不是我屏幕宽度的100%。

有关如何通过jupyter主题使用cmd提示仅实现100%单元格宽度的任何想法?

1 个答案:

答案 0 :(得分:0)

您有多种选择:

  1. 从笔记本更改
  2. from IPython.core.display import display, HTML
    display(HTML('<style>.container {width:100% !important;}</style>'))
    
    1. ~/.jupyter/custom/custom.css(Jupyter)~/.ipython/profile_default/static/custom/custom.css(iPython)下创建自定义css文件,内容为:
    2. .container {width: 100% !important;}