I want to create a table of contents at the beginning of the IPython notebook like this
(Note: The image was taken from here)
You can create it using this library.
Just paste the following 3 lines into your Markdown cell. It automatically acquires the Header cell and writes the table of contents.
<h1 id="tocheading">Table of Contents</h1>
<div id="toc"></div>
<script src="https://kmahelona.github.io/ipython_notebook_goodies/ipython_notebook_toc.js"></script>
Recommended Posts