<t> (Text)

This element specifies that this run contains literal text which shall be displayed in the document. The t element shall be used for all text runs which is not:

  • Part of a region of text that is contained in a deleted region using the <del> element (§2.13.5.12)

  • Part of a region of text that is contained within a field code

example:
<w:p>
  <w:r>
    <w:t>This is text</w:t>
  </w:r>
</w:p>

The text is contained in a <t> node. ]

Parent Elements

<r>7.1.2.87); <r>2.3.2.23)

Attributes

Description

<space> (Content Contains Significant Whitespace)

Namespace: http://www.w3.org/XML/1998/namespace

Specifies how white space should be handled for the contents of this element using the W3C space preservation rules.

<w:r>
  <w:t>significant whitespace   </w:t>
</w:r>

Although there are three spaces on each side of the text content in the run, that whitespace has not been specifically marked as significant, therefore it is removed when this run is added to the document. ]

The possible values for this attribute are defined by the type in the namespace.

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

<complexType name="CT_Text">
	<simpleContent>
	<extension base="ST_String">
	<attribute ref="xml:space" use="optional"/>
	</extension>
	</simpleContent>
</complexType>