Navigation inside a notebook
Is there a way inside a notebook to make reference to a graphic or a calculation to navigate later to it and back.
Is there a way inside a notebook to make reference to a graphic or a calculation to navigate later to it and back.
You can use Markdown and HTML.
For example, if you add a Markdown cell (Cell → Cell Type → Markdown) then you can add headings
# Chapter 1
Some text.
## Subsection 1.1
Some more text.
which will render approximately like this:
Chapter 1
Some text.
Subsection 1.1
Some more text.
but the Jupyter notebook also adds links which you can see by hovering over the headings.
Then you can link to these headings in a Markdown cell using the link syntax:
See [Subsection 1.1](#Subsection-1.1).
By using HTML you can also link to places which are not headings, e.g. if you make a div
with an id
<div id="Example-1">
<b>Example 1.</b> $3^2 + 4^2 = 5^2$.
</div>
then you can link to it by [Example 1](#Example-1)
in a Markdown cell.
Please start posting anonymously - your entry will be published after you log in or create a new account.
Asked: 2020-05-18 11:31:44 +0100
Seen: 321 times
Last updated: May 18 '20
Notebook List Object Data Storage/Retrieval? (Start/Restart)
Short Cython Example In A Notebook Cell?
What happens in insecure mode?
Is notebook() mutually-exclusive from "./sage -gdb" mode?
Can I pause a computation rather than aborting it? (Interrupt Command)
What state is preserved when I close a running notebook browser window?