[Table of Contents] [docx version]

WordprocessingML Reference Material - Table of Contents

endnote (Special Endnote List)

This element specifies the ID for all endnotes which are located in the current document that are not of type normal. Each other type of endnote shall be referenced in this list, or it shall not be loaded. If an endnote is not listed beneath this element, and it is required by the document content, then the document shall be considered non-conformant.

[Example: Consider a document that has three endnotes represented by the following WordprocessingML:

<w:endnotes ...>

<w:endnote w:type="separator" w:id="0">

...

</w:endnote>

<w:endnote w:type="continuationSeparator" w:id="1">

...

</w:endnote>

<w:endnote w:id="2">

...

</w:endnote>

</w:endnotes>

Each of the endnotes which are not of type normal must be specified in the endnotePr element, as follows:

<w:endnotePr>

<w:endnote w:id="0" />

<w:endnote w:id="1" />

</w:endnotePr>

This indicates to the consumer that the endnotes with an id attribute value of 0 and 1 are special endnotes, and should be treated accordingly. end example]

Parent Elements

endnotePr2.11.4)

 

Attributes

Description

id (Footnote/Endnote ID)

Specifies a unique ID which shall be used to match the contents of a footnote or endnote to the associated footnote/endnote reference mark in the document using the footnoteRef or endnoteRef element, as appropriate.

 

If more than one footnote shares the same ID, then this document shall be considered non-conformant. If more than one endnote shares the same ID, then this document shall be considered non-conformant.

 

[Example: Consider the following footnote as defined in the footnotes part:

 

<w:footnotes>

<w:footnote w:type="normal" w:id="0">

</w:footnote>

</w:footnotes>

 

The contents of this footnote are associated with the footnoteReference with a matching ID, as follows:

 

<w:p>
<w:r>
<w:footnoteReference w:id="0" />
</w:r>
</w:p>

 

The resulting paragraph will have a footnote reference mark which references the footnote number value of the footnote with an id of 0. end example]

 

The possible values for this attribute are defined by the ST_DecimalNumber simple type2.18.16).

The following XML Schema fragment defines the contents of this element:

<complexType name="CT_FtnEdnSepRef">

   <attribute name="id" type="ST_DecimalNumber" use="required"/>

</complexType>