How do I increase the cell width of the Jupyter/ipython notebook in my browser?
我想在浏览器中增加ipython笔记本的宽度。 我有一个高分辨率的屏幕,我想扩大单元格的宽度/大小,以利用这个额外的空间。
谢谢!
编辑:5/2017
我现在使用jupyterthemes:https://github.com/dunovank/jupyter-themes
这个命令:
1 | jt -t oceans16 -f roboto -fs 12 -cellw 100% |
使用漂亮的主题将宽度设置为100%。
如果您不想更改默认设置,并且只想更改当前正在处理的笔记本的宽度,则可以在单元格中输入以下内容:
1 2 | from IPython.core.display import display, HTML display(HTML("<style>.container { width:100% !important; }</style>")) |