<ftr> (Footer)
This element specifies the content for a single footer for use within one or more sections of a WordprocessingML document.
Within the <ftr> element, the content of the element is similar to the content of the <body> (§2.2.2) element, and contains what is referred to as block-level markup - markup which can exist as a sibling element to paragraphs in a WordprocessingML document.

This document defines one footer with the text footer. The footer contents are stored in a unique footer part. The resulting footer is represented by the following WordprocessingML:
<w:ftr>
<w:p>
<w:r>
<w:t>Footer</w:t>
</w:r>
</w:p>
</w:ftr>
Since footers are containers of block level contents, all block level elements can be used within them. In this particular example, the content is a single paragraph. ]
This document defines three footers stored in three different footer parts. The resulting footers are represented by the following WordprocessingML:
First page footer part:
<w:ftr>
<w:p>
<w:r>
<w:t>First</w:t>
</w:r>
</w:p>
</w:ftr>
Even page footer part:
<w:ftr>
<w:p>
<w:r>
<w:t>Even</w:t>
</w:r>
</w:p>
</w:ftr>
Odd page footer part:
<w:ftr>
<w:p>
<w:r>
<w:t>Odd</w:t>
</w:r>
</w:p>
</w:ftr>
Parent Elements |
|---|
Root element of WordprocessingML Footer part |
Child Elements |
Subclause |
|---|---|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
The following XML Schema fragment defines the contents of this element:
<complexType name="CT_HdrFtr">
<group ref="EG_BlockLevelElts" minOccurs="1" maxOccurs="unbounded"/>
</complexType>