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

<!-- This file makes part of an XSL Test Suite -->
<!-- Basic font styles test - Italic and slanted -->

<plain-doc>

  <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/italic.xml">
        <dc:title>  Basic Font Attributes - Font Style </dc:title>
        <dc:description>
          <db:para>
            Tests slant variations of fonts: 
            <db:parameter>italic</db:parameter>, <db:parameter>oblique</db:parameter>,
            <db:parameter>backslant</db:parameter>.
          </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> 

<define-macro name="single-family">
   <p font-family="$arg" 
      text-align="start"
      space-before="6pt">
      <p><b>For <arg/>:</b></p>
      <p>
        <font font-style="normal" keep-together.within-line="always">
          This is upright,
        </font>
        <font font-style="backslant" keep-together.within-line="always">
          this is backslant,
        </font>
        <font font-style="italic" keep-together.within-line="always">
          this is italic,
        </font>
        <font font-style="oblique" keep-together.within-line="always">
          and this is oblique.
        </font>
        <b>
          <font font-style="normal" keep-together.within-line="always">
            This is bold upright,
          </font>
          <font font-style="backslant" keep-together.within-line="always">
            This is bold backslant,
          </font>
          <font font-style="italic" keep-together.within-line="always">
            this is bold italic,
          </font>
          <font font-style="oblique" keep-together.within-line="always">
            and this is bold oblique.
          </font>
        </b>
      </p>
    </p>
</define-macro>


<!-- ========================================================= -->
<!-- Document body                                             -->

<title> Basic Font Attributes - Font Style </title>

<text>
  This test contains examples of italic and slanted variants 
  for fonts. Normally, <code>italic</code> will coincide with 
  <code>oblique</code>, but we should test both of them. 
  <code>Backslant</code> is rarely available; but, for the sake
  of completeness, we test even this one.
</text>

<macro name="single-family" arg="Helvetica"/>
<macro name="single-family" arg="Times"/>
<macro name="single-family" arg="Courier"/>

</plain-doc>
