<ind>
(Paragraph Indentation)
This element specifies the set of indentation properties applied to the current paragraph.
Indentation settings are overriden on an individual basis - if any single attribute on this element is omitted on a given paragraph, its value is determined by the setting previously set at any level of the style hierarchy (i.e. that previous setting remains unchanged). If any single attribute on this element is never specified in the style hierarchy, then no indentation of that type is applied to the paragraph.
<w:pPr> <w:ind w:left="1440" w:right="1440" w:hanging="1080" /> </w:pPr>
This set of indentation properties specifies that a 1440
twentieths of a point indentation should be provided on both the left and the right side of the text margins for this paragraph, and that a 1080
twentieths of a point hanging indent (towards the text margin) should be applied to the text in the first paragraph, giving it a net one-quarter inch indent from the text margin. ]
Parent Elements |
---|
|
Attributes |
Description |
---|---|
|
Specifies the additional indentation which shall be applied to the first line of the parent paragraph. This additional indentation is specified relative to the paragraph indentation which is specified for all other lines in the parent paragraph. The <w:pPr> <w:ind w:left="1440" w:right="720" w:firstLine="1440" /> </w:pPr> This set of indentations specifies that the first line should be indented The possible values for this attribute are defined by the ST_TwipsMeasure simple type (§2.18.105). |
|
Specifies the additional indentation which shall be applied to the first line of the parent paragraph. This additional indentation is specified relative to the paragraph indentation which is specified for all other lines in the parent paragraph. It is specified in one hundredths of a character unit. The <w:pPr> <w:ind w:left="1440" w:right="720" w:firstLineChars="140" /> </w:pPr> This set of indentations specifies that the first line should be indented The possible values for this attribute are defined by the ST_DecimalNumber simple type (§2.18.16). |
|
Specifies the indentation which shall be removed from the first line of the parent paragraph, by moving the indentation on the first line back towards the beginning of the direction of text flow. This indentation is specified relative to the paragraph indentation which is specified for all other lines in the parent paragraph. The <w:pPr> <w:ind w:left="1440" w:right="720" w:hanging="720" /> </w:pPr> This set of indentations specifies that the first line should be indented The possible values for this attribute are defined by the ST_TwipsMeasure simple type (§2.18.105). |
|
Specifies the indentation which shall be removed from the first line of the parent paragraph, by moving the indentation on the first line back towards the beginning of the direction of text flow. This indentation is specified relative to the paragraph indentation which is specified for all other lines in the parent paragraph. It is specified in one hundredths of a character unit. The <w:pPr> <w:ind w:left="1440" w:right="720" w:hangingChars="100" /> </w:pPr> This set of indentations specifies that the first line should be indented one character unit towards the text margin from the indentation specified for all remaining paragraphs, which is the The possible values for this attribute are defined by the ST_DecimalNumber simple type (§2.18.16). |
|
Specifies the indentation which shall be placed between the left text margin for this paragraph and the left edge of that paragraph's content in a left to right paragraph, and the right text margin and the right edge of that paragraph's text in a right to left paragraph. If the If this attribute is omitted, its value shall be assumed to be zero. All other values for this element are relative to the text margin, Negative values are defined such that the text is moved past the text margin, positive values move the text inside the text margin. This value may be superseded for the first line only via use of the <w:pPr> <w:ind w:left="720" w:right="2880" /> </w:pPr> This set of paragraph indentations specifies that this paragraph's text should be indented The possible values for this attribute are defined by the ST_SignedTwipsMeasure simple type (§2.18.88). |
|
Specifies the indentation which shall be placed between the left text margin for this paragraph and the left edge of that paragraph's content in a left to right paragraph, and the right text margin and the right edge of that paragraph's text in a right to left paragraph. If the This value is specified in hundredths of a character unit. If this attribute is omitted, its value shall be assumed to be zero. All other values for this element are relative to the text margin, Negative values are defined such that the text is moved past the text margin, positive values move the text inside the text margin. This value may be superseded for the first line only via use of the <w:pPr> <w:ind w:leftChars="250" /> </w:pPr> This set of paragraph indentations specifies that this paragraph's text should be indented two and a half character units from the left text margin in this document. ] The possible values for this attribute are defined by the ST_DecimalNumber simple type (§2.18.16). |
|
Specifies the indentation which shall be placed between the right text margin for this paragraph and the right edge of that paragraph's content in a left to right paragraph, and the left text margin and the left edge of that paragraph's text in a right to left paragraph. If the If this attribute is omitted, its value shall be assumed to be zero. All other values for this element are relative to the text margin, Negative values are defined such that the text is moved past the text margin, positive values move the text inside the text margin. As well, if the <w:pPr> <w:ind w:left="720" w:right="-1440" /> </w:pPr> This set of paragraph indentations specifies that this paragraph's text should be indented The possible values for this attribute are defined by the ST_SignedTwipsMeasure simple type (§2.18.88). |
|
Specifies the indentation which shall be placed between the right text margin for this paragraph and the right edge of that paragraph's content in a left to right paragraph, and the left text margin and the left edge of that paragraph's text in a right to left paragraph. If the This value is specified in hundredths of a character unit. If this attribute is omitted, its value shall be assumed to be zero. All other values for this element are relative to the right text margin, Negative values are defined such that the text is moved past the text margin, positive values move the text inside the text margin. As well, if the <w:pPr> <w:ind w:rightChars="250" /> </w:pPr> This set of paragraph indentations specifies that this paragraph's text should be indented two and a half character units from the right text margin in this document, assuming this is a left to right paragraph. ] The possible values for this attribute are defined by the ST_DecimalNumber simple type (§2.18.16). |
The following XML Schema fragment defines the contents of this element:
<complexType name="CT_Ind">
<attribute name="left" type="ST_SignedTwipsMeasure" use="optional"/>
<attribute name="leftChars" type="ST_DecimalNumber" use="optional"/>
<attribute name="right" type="ST_SignedTwipsMeasure" use="optional"/>
<attribute name="rightChars" type="ST_DecimalNumber" use="optional"/>
<attribute name="hanging" type="ST_TwipsMeasure" use="optional"/>
<attribute name="hangingChars" type="ST_DecimalNumber" use="optional"/>
<attribute name="firstLine" type="ST_TwipsMeasure" use="optional"/>
<attribute name="firstLineChars" type="ST_DecimalNumber" use="optional"/>
</complexType>