<lnSpc> (Line Spacing)

This element specifies the vertical line spacing that is to be used within a paragraph. This may be specified in two different ways, percentage spacing and font point spacing. If this element is omitted then the spacing between two lines of text should be determined by the point size of the largest piece of text within a line.

example:
<p:txBody>
  <a:p>
    <a:pPr>
      <a:lnSpc>
        <a:spcPct val="200000"/>
      </a:lnSpc>
    </a:pPr>
    <a:r>
      <a:rPr lang="en-US" dirty="0" smtClean="0"/>
      <a:t>Some</a:t>
    </a:r>
    <a:br>
      <a:rPr lang="en-US" smtClean="0"/>
    </a:br>
    <a:r>
      <a:rPr lang="en-US" dirty="0" smtClean="0"/>
      <a:t>Text</a:t>
    </a:r>
  </a:p>
</p:txBody>

This paragraph will have two lines of text that will have percentage based vertical spacing. This kind of spacing should change based on the size of the text involved as its size is calculated as a percentage of this. ]

Parent Elements

<defPPr>5.1.5.2.2); <lvl1pPr>5.1.5.4.13); <lvl2pPr>5.1.5.4.14); <lvl3pPr>5.1.5.4.15); <lvl4pPr>5.1.5.4.16); <lvl5pPr>5.1.5.4.17); <lvl6pPr>5.1.5.4.18); <lvl7pPr>5.1.5.4.19); <lvl8pPr>5.1.5.4.20); <lvl9pPr>5.1.5.4.21); <pPr>5.1.5.2.7)

Child Elements

Subclause

<spcPct> (Spacing Percent)

§5.1.5.2.10

<spcPts> (Spacing Points)

§5.1.5.2.11

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

<complexType name="CT_TextSpacing">
	<choice>
	<element name="spcPct" type="CT_TextSpacingPercent"/>
	<element name="spcPts" type="CT_TextSpacingPoint"/>
	</choice>
</complexType>