ReStructuredText编号的头文件

时间:2010-03-02 09:51:45

标签: markup restructuredtext

首先有一种方法可以自动标题编号吗?这就像是:

#. Some Section
===============
...
#. Some Subsection
------------------
...
#. Another Subsection
---------------------
...
#. Another Section
==================
...

将呈现为:

1。一些部分

...

1.1一些小节

...

1.2另一小节

...

2。另一节

...

1 个答案:

答案 0 :(得分:19)

根据docutils手册,您可以使用sectnum指令:http://docutils.sourceforge.net/0.7/docs/ref/rst/directives.html#automatic-section-numbering

所以你可以在第一行添加这样的东西:

.. sectnum::

HTH