发布于 2021-01-21 01:56:20
在reStructured文本中包含以下行将插入一个目录。
.. contents::Nikola是对reStructuredText (reST)的扩展,它包括两个组件:其markup language和directives。
reST标记语言(比如在Stack Overflow中使用的Markdown )很容易学习。但是,更高级的格式化(如插入图像和目录)是通过指令(也是reST的一部分) take option完成的。例如:
.. figure:: images/myPic.png
:width: 200
:alt: A 3-4-5 triangle
:align: right
This is the caption for my 3-4-5 triangle.
Indentation is important.https://stackoverflow.com/questions/58812181
复制相似问题