17.9.10 lvlRestart

This element specifies a one-based index which determines when a numbering level should restart to its start value (17.9.25). A numbering level restarts when an instance of the specified numbering level, which shall be higher (earlier than this level) or any earlier level is used in the given document’s contents. [Example: If this value is 2, then both level two and level one reset this value. end example]

If this element is omitted, the numbering level shall restart each time the previous numbering level or any earlier level is used. If the specified level is higher than the current level, then this element shall be ignored. As well, a value of 0 shall specify that this level shall never restart.

[Example: Consider a set of numbered paragraphs in a WordprocessingML document where numbering level with ilvl of 2 is set to never restart:

<w:lvl w:ilvl="0">
  <w:start w:val="1" />
  <w:lvlText w:val="%1)" />
  <w:lvlJc w:val="start" />
    <w:pPr>
      <w:ind w:start="360" w:hanging="360" />
  </w:pPr>
    <w:rPr>
      <w:rFonts w:hint="default" />
  </w:rPr>
</w:lvl>
  <w:lvl w:ilvl="1">
    <w:start w:val="1" />
    <w:numFmt w:val="upperLetter" />
    <w:lvlText w:val="%2)" />
    <w:lvlJc w:val="start" />
      <w:pPr>
        <w:ind w:start="720" w:hanging="360" />
    </w:pPr>
      <w:rPr>
        <w:rFonts w:hint="default" />
    </w:rPr>
</w:lvl>
<w:lvl w:ilvl="2">
    <w:start w:val="1" />
    <w:numFmt w:val="lowerRoman" />
    <w:lvlRestart w:val="0">
    <w:lvlText w:val="%3)" />
    <w:lvlJc w:val="start" />
      <w:pPr>
        <w:ind w:start="1080" w:hanging="360" />
    </w:pPr>
      <w:rPr>
        <w:rFonts w:hint="default" />
    </w:rPr>
</w:lvl>

Since the lvlRestart element is omitted in numbering level 1 (a,b,…), the numbering level restarts after numbering level 0 (1,2,…) is used. Numbering level two (i, ii, iii …) never restarts as lvlRestart has a val equal to 0. An example of the resulting content would be as follows:

  • Level one

  • a)

Level two

i)

Level three

ii)

Level three

  • Level one

  • a)

Level two

iii)

Level three

iv)

Level four

The resulting set of paragraphs has level two restarting to its start value after each level one (after 2), the next level two is again a)), but level three never restarts and continues at iii) even after the use of a level two and one. end example]

Attributes

val (Decimal Number Value)

Specifies that the contents of this attribute contains a decimal number.

The contents of this decimal number are interpreted based on the context of the parent XML element.

[Example: Consider the following numeric WordprocessingML property of simple type ST_DecimalNumber:

  <… w:val="1512645511" />

The value of the val attribute is a decimal number whose value must be interpreted in the context of the parent element. end example]

The possible values for this attribute are defined by the ST_DecimalNumber simple type (17.18.10).

[Note: The W3C XML Schema definition of this element’s content model (CT_DecimalNumber) is located in A.1. end note]

Last updated on