Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to add bookmark to IPython/Jupyter Notebook

I'm reading an interactive textbook "Kalman and Bayesian Filters in Python" and would like to mark where I left off when I go for a break. I have cloned the notebook and am running the notebook locally. My current method is to add a giant ####Bookmark heading to my current .ipynb file. Is there a better way?

like image 674
Julia Schwarz Avatar asked Jul 24 '15 17:07

Julia Schwarz


People also ask

How do I add a shortcut to a notebook in Jupyter?

Starting with Jupyter Notebook 5.0, you can customize the command mode shortcuts from within the Notebook Application itself. Head to the ``Help`` menu and select the ``Edit keyboard Shortcuts`` item. A dialog will guide you through the process of adding custom keyboard shortcuts.

How do I add a tab to a Jupyter Notebook?

Ctrl-B for inserting tab character). However, Tab key still do autocompletion when cursor is not in the head of line. Was I miss something in that issue? Thanks!

How do you use %% Timeit in Jupyter?

The “%timeit” is a line magic command in which the code consists of a single line or should be written in the same line for measuring the execution time. In the “%timeit” command, the particular code is specified after the “%timeit” is separated by a space.


1 Answers

Why not just use a pair of Markdown cells?

Somewhere near the top:

Go to <a href=#bookmark>my bookmark</a>

Then in a cell near where you left off:

Left off here <a name='bookmark' />

(Closing the <a> tag with no content inside stops it looking like a hyperlink)

like image 109
Rich Clarke Avatar answered Oct 20 '22 01:10

Rich Clarke