按文本顺序编号章节

按文本顺序编号章节

我的文档结构由部分和章节组成。添加新部分时,章节计数器会重置,章节编号会重新从 1 开始。

\setuphead[part]
[
    page=no,
    deepnumbercommand=\convertnumber{Romannumerals},
    placehead=yes
]

\definenumber[chapter][way=bytext]

\setuphead[chapter]
[
    page=no,
    sectionsegments=2,
    alternative=middle    
]


\starttext

    \startpart[title=First part]

        \startchapter[title=First chapter]
        \stopchapter

        \startchapter[title=Second chapter]
        \stopchapter

    \stoppart

    \startpart[title=Second part]

        \startchapter[title=Third chapter should have the number 3]
        \stopchapter

    \stoppart

\stoptext 

我需要获得独立于各个部分的连续章节编号。我该怎么做?

答案1

您正在寻找(见语境花园

\defineresetset[default][1,0][1]% reset part but not chapter

相关内容