我想爲我的14英寸屏幕節省一些空間。我應該寫什麼? ipython_notebook_config.py來觸發這個?ipython筆記本:如何在默認情況下切換標頭不可見
7
A
回答
11
如果它不存在,在
/Users/YOURUSERNAME/.ipython/profile_default/static/custom/
(您可能需要運行ipython profile create
,如果你從來沒有運行該命令。)在
custom.js
,把創建一個名爲custom.js
文件JavaScript的$([IPython.events]).on("app_initialized.NotebookApp", function() { $('div#header').hide(); });
以下行如果你想也默認隱藏工具欄,使用這些線Ø ˚F的JavaScript,而不是
$([IPython.events]).on("app_initialized.NotebookApp", function() { $('div#header').hide(); $('div#maintoolbar').hide(); });
2
如果您有最新的IPython,像V3.0.0或更高,並且看到只有零星的成功使用這種方法,你需要掛接到RequireJS依賴裝載機,和把你的common.js
如下:
require(['jquery'], function($) {
$('#header-container').hide();
});
common.js
在頁面底部加載,所以沒有必要等待DOM ready事件,即$(function() { ... })
。
如需進一步討論,請參閱我的回答Turn off auto-closing parentheses in ipython及其評論。
1
如果你正在使用Anaconda3
,請做到:
更新您的
C:\Anaconda3\Lib\site-packages\notebook\static\custom\custom.css
.container{ width:100% !important; } div#site{ height: 100% !important; }
更新您的
C:\Anaconda3\Lib\site-packages\notebook\static\custom\custom.js
,我們添加一個快捷方式ctrl+
用於切換頭$([IPython.events]).on('notebook_loaded.Notebook',function(){ $('#header').hide(); IPython.keyboard_manager.command_shortcuts.add_shortcut('ctrl-`',function (event) { if (IPython.notebook.mode == 'command') { $('#header').toggle(); return false; } return true; }); });
相關問題
- 1. 發送流切換默認情況下
- 2. 如何在iPython筆記本中設置默認啓動命令?
- 3. 切換到默認情況下切換案例
- 4. 如果在安裝ipython的情況下運行python,如何使ipython默認?
- 5. iPython Notebook中的默認筆記本目錄 - iPython 3.0.0
- 6. IPython筆記本不會顯示情節
- 7. 如何更改ipython筆記本的默認配色方案?
- 8. 如何解決默認情況下摺疊文本塊的可見性......並根據條件切換?
- 9. 蟒蛇IPython的筆記本默認筆記本目錄 - Mac OSX版
- 10. 產量和默認情況||不輸出默認情況下
- 11. 默認情況下在VBox
- 12. 在默認情況下
- 13. FactoryGirl在默認情況下
- 14. 如何在ipython筆記本中創建新筆記本?
- 15. 在IPython筆記本上更改圖標
- 16. 在IPython筆記本中居中標題
- 17. ipython筆記本中的端口使用情況
- 18. 默認情況下,使滾動條的火花列表可見
- 19. 默認情況下使完美的滾動條可見
- 20. 默認情況下Jquery對話框可見
- 21. 鐺:默認情況下在手臂上使char被標記
- 22. Jquery - 默認情況下隱藏的點擊切換嵌套div
- 23. 默認情況下第一個切換打開
- 24. 如何在jupyter筆記本中設置pyspark默認上下文?
- 25. 如何在默認情況下漂亮的打印對象表示在IPython中
- 26. 如何在默認情況下在ipython notebook markdown中創建新的單元格?
- 27. 如何在ipython筆記本中設置matplotlib圖的默認大小?
- 28. Ipython筆記本:默認初始化Python代碼
- 29. 選擇標籤:默認情況下
- 30. D3時間軸 - 爲什麼刻度標記在默認情況下似乎不可見?
對於Ipython3使用「$('div#header-container')。hide();」而不是「$('div#header')。hide();」 – user5061
您還可以添加一個[鍵盤快捷鍵來切換標題,菜單和工具欄](http://stackoverflow.com/questions/28876235/ipython-notebook-3-hide-headers-by-default?lq=1) –