<endnote>
(Endnote Content)
This element specifies the content of a single endnote within a WordprocessingML document. Each endnote shall be represented by a single <endnote>
element, which may contain any valid .
<w:endnotes> <w:endnote w:id="2"> <w:p> <w:pPr> <w:pStyle w:val="EndnoteText" /> </w:pPr> <w:r> <w:rPr> <w:rStyle w:val="EndnoteReference" /> </w:rPr> <w:endnoteRef /> </w:r> <w:r> <w:t xml:space="preserve">This is an endnote</w:t> </w:r> </w:p> </w:endnote> </w:endnotes>
This endnote contains an endnote reference mark, as well as the endnote text This is an endnote
. ]
Parent Elements |
---|
|
Child Elements |
Subclause |
---|---|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Attributes |
Description |
---|---|
|
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 If this attribute is omitted, then this footnote or endnote shall have no ID. 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. <w:footnotes> <w:footnote w:type="normal" w:id="0"> … </w:footnote> … </w:footnotes> The contents of this footnote are associated with the <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 The possible values for this attribute are defined by the ST_DecimalNumber simple type (§2.18.16). |
|
Specifies the type of footnote or endnote contained within the current footnote or endnote content definition. If this attribute is omitted, then it shall be considered to be of type <w:footnote w:type="continuationSeparator" w:id="1"> <w:p> <w:r> <w:continuationSeparator /> </w:r> </w:p> </w:footnote> In this example, the footnote is of type The possible values for this attribute are defined by the ST_FtnEdn simple type (§2.18.37). |
The following XML Schema fragment defines the contents of this element:
<complexType name="CT_FtnEdn">
<sequence>
<group ref="EG_BlockLevelElts" minOccurs="1" maxOccurs="unbounded"/>
</sequence>
<attribute name="type" type="ST_FtnEdn" use="optional"/>
<attribute name="id" type="ST_DecimalNumber" use="required"/>
</complexType>