NumberingFormat
Represents a format that defines how items (e.g. headings) are numbered in a document, depending on their relative position and level of nesting. For example, a format 1.A.a
would result in the following numbering:
1
1.A
1.B
1.B.a
2
2.A
2.A.a
2.B In this example, the format consists of the following symbols:
1
is a DecimalNumberingSymbol, which counts1, 2, 3, ...
.
is a NumberingFixedSymbolA
is an uppercase AlphaNumberingSymbol, which countsA, B, C, ...
.
is a NumberingFixedSymbola
is a lowercase AlphaNumberingSymbol, which countsa, b, c, ...
A format can be imported and exported as a string via fromString and format respectively.
Parameters
ordered list of symbols that define the format
See also
Properties
Functions
Converts the numbering format into a string. For example, the NumberingFormat 1.A.a
would format the levels 1, 1, 0
as 2.B.a
.