I want to save some space for my 14 inch screen. What should I write in e.g. ipython_notebook_config.py to trigger this?
To hide Markdown, use the {toggle} directive. To hide or remove code cells or their outputs, use notebook cell tags.
It can be shown/hidden with the "View/Toggle Toolbar" menu. Save this answer. Show activity on this post. Save this answer.
When a cell is displayed with an asterisk it means it's busy. It might mean that: 1) The cell is now executing; 2)or it will execute when it's turn arrives. 3)or it is not executing because the kernel was restarted or interrupted.
If it doesn't already exist, create a file named custom.js
in /Users/YOURUSERNAME/.ipython/profile_default/static/custom/
(You may have to run ipython profile create
, if you have never run this command.)
In custom.js
, put the following lines of JavaScript
$([IPython.events]).on("app_initialized.NotebookApp", function () {
$('div#header').hide();
});
If you would like to also hide the toolbar by default, use these lines of JavaScript instead
$([IPython.events]).on("app_initialized.NotebookApp", function () {
$('div#header').hide();
$('div#maintoolbar').hide();
});
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With