<footnote>
(Footnote Content)
This element specifies the content of a single footnote within a WordprocessingML document. Each footnote shall be represented by a single <footnote>
element, which may contain any valid .
<w:footnotes> <w:footnote w:id="2"> <w:p> <w:pPr> <w:pStyle w:val="FootnoteText" /> </w:pPr> <w:r> <w:rPr> <w:rStyle w:val="FootnoteReference" /> </w:rPr> <w:footnoteRef /> </w:r> <w:r> <w:t xml:space="preserve">This is a sample footnote</w:t> </w:r> </w:p> </w:footnote> </w:footnotes>
This footnote contains an footnote reference mark, as well as the endnote text This is a sample footnote
. ]
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>