4

我正在使用 Sphinx 为 Python 程序编写文档。我想创建一个带有嵌套列表和自动编号的有序列表。

我想获得这样的东西:

在这里它遵循一个编号列表

  1. 这是列表的第一项
  2. 这是第二个
    • 第二个项目有一个包含两个项目的嵌套列表
    • 这是嵌套列表的最后一项
  3. 父列表继续其第三项

如果我明确使用数字作为编号列表,一切都很好。当我想使用自动编号时,问题就出现了,因为我想保持灵活性。清单很长,将来可能会发生变化,我不想在介绍新项目时更改所有数字。

我尝试使用以下代码:

Here it follows a numbered list

#. This is the first item of the list
#. This is the second one

  * The second item has a nested list with two items
  * this is the last item of the nested list

#. The parent list continues with its third item

我得到的结果如下:

在这里它遵循一个编号列表

  1. 这是列表的第一项
  2. 这是第二个

    • 第二个项目有一个包含两个项目的嵌套列表
    • 这是嵌套列表的最后一项

.1。父列表继续其第三项

[我必须添加一些字符,这里是一个点,用于第三项或 stackoverflow 中的降价系统显示 3!]

如您所见,嵌套列表从头开始重新开始后的编号。

4

1 回答 1

3

您必须正确缩进嵌套项目符号列表的两项以匹配父列表的文本,因此只需添加如下空格:

#. This is the first item of the list
#. This is the second one

   * The second item has a nested list with two items
   * this is the last item of the nested list

#. The parent list continues with its third item

完整的解释在这里

于 2015-12-24T10:00:41.250 回答