<?xml version='1.0' encoding='ISO-8859-1'?>

<!-- This file makes part of an XSL Test Suite -->
<!-- Paragraph styles: indents & first line formatting -->

<plain-doc column-count="1">

  <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
           xmlns:dcterms="http://purl.org/dc/terms/"
           xmlns:dc="http://purl.org/dc/elements/1.1/"
           xmlns:db="http://www.oasis-open.org/docbook/xml/4.2/">
     <rdf:Description rdf:about="http://xep.xattic.com/testsuite/features/indent.xml">
        <dc:title>Text Block Attributes - Indents</dc:title>
        <dc:description>
          <db:para>
  Tests various indentation attributes:
  <db:sgmltag class='attribute'>start-indent</db:sgmltag>,
  <db:sgmltag class='attribute'>end-indent</db:sgmltag>,
  <db:sgmltag class='attribute'>text-indent</db:sgmltag>, and
  <db:sgmltag class='attribute'>last-line-end-indent</db:sgmltag>.
          </db:para>
        </dc:description>
        <dc:date>2003-07-25</dc:date><dcterms:requires rdf:resource="http://xep.xattic.com/testsuite/features/macro.xsl"/>
    </rdf:Description>
  </rdf:RDF> 

<title>Text Block Attributes - Indents</title>
<h2>First Line Indent</h2>

<p text-align="start" space-before="6pt" text-indent="1in">
  <repeat times="7">
    This text is formatted into a left-justified paragraph.
    The first line has an indent of 1 inch from the left.
  </repeat>
</p>

<p text-align="start" space-before="6pt" 
   start-indent="1in" text-indent="-1in"> 
  <repeat times="5">
    This text is formatted into a left-justified paragraph. It is 
    indented by 1 inch from left, except for the first line which is 
    outdented by 1 inch with respect to the left paragraph margin. 
  </repeat>
</p>

<h2>Last Line Indent</h2>

<p text-align="end" space-before="6pt" last-line-end-indent="1in"> 
  <repeat times="7">
    This text is formatted into a right-justified paragraph.
    The last line has an indent of 1 inch from the right.
  </repeat>
</p>


<p text-align="end" space-before="6pt" 
  end-indent="1in" last-line-end-indent="-1in">
  <repeat times="5">
    This text is formatted into a right-justified paragraph. It is 
    indented by 1 inch from right, except for the last line which 
    is outdented by 1 inch with respect to the right paragraph margin.
  </repeat>
</p>

</plain-doc>

