Jupyter中目录生成

Jupyter 中没有直接生成目录的工具,因此你需要一旦HTML的东西来生成目录。

目录

生成目录你需要两个东西

1.Destination

2.The internal hyperlink

本文代码

生成目录你需要两个东西:

  1. 目标 Destination。关键语句:

  1. 一个到目标的内部超链接 Internal hyperlink.关键语句:
[name shown in content](#destination_tag)

1. Destination

在需要出现在目录中的地方插入一个空的 HTML 定位标记并给他一个id, 例如:


注意

1.id也可以使用name,但是name在HTML5中不再使用了,建议使用id。因为你可能把Notebook导出为html并放在其他地方
2.创建destination的语句最好单独放在一个cell里面,如果放在destination一个cell中,在jupyter中没用影响,但是在html中有问题。例如这里我是在“1. Destination” 之前建了一个cell输入

2.The internal hyperlink

有两种方式:
1.使用goode olde HTML,在名字前使用hash标识#将一个fragment identifier 放在目录中:Link to the destination,例如:
2.The internal hyperlink

2.更简单的方法是使用Markdown语法:[Link to the destination](#the_destination),例如:
[2.The internal hyperlink](#inter link)

本文代码

目录中的代码:

# 目录
[生成目录你需要两个东西](#needs)

[1.Destination](#destination)

2.The internal hyperlink

本文代码

三个标题前分别插入的描述destination的cell:






你可能感兴趣的:(Jupyter中目录生成)