Remove question mark and Enter/Exit Button in RISE (Jupyter Notebook)

974 Views Asked by At

When using RISE in Jupyter Notebook, is there any possible way to not display the question mark (lower left corner) and the Exit/ Enter Button (upper left corner)?

3

There are 3 best solutions below

0
On BEST ANSWER

Found a solution. Go to main.js located in /jupyter/nbextensions/rise, there delete both

buttonExit();
buttonHelp();
0
On

May be you are asking How to get enter image description here from enter image description here

you just need to press "," in command mode

0
On

Pressing the comma (,) will actually hide/reveal the x and ? buttons, as well as the chalkboard buttons. To hide the controls, you need to uncheck the box in the settings with 'controls':

enter image description here

You can use shift + C or the Nbextensions menu from the main jupyter page to get to the RISE settings.

You can also set the slidenumber as blank to not show any slide numbers, and uncheck the option for the progress bar. Then with controls, menu items, progress bar, and slide numbers gone, you have a clean presentation.

Related github issue: https://github.com/damianavila/RISE/issues/244