prev up next66
<xsl:template match="ol"> 
 <fo:list-block 
    space-before.optimum="4pt"> 
    <xsl:apply-templates /> 
 </fo:list-block>  </xsl:template> 
<xsl:template match="li"> <fo:list-item> 
 <fo:list-item-label>...</fo:list-item-label> 
 <fo:list-item-body> 
   <fo:block font-weight="normal"> 
      <xsl:apply-templates/></fo:block> 
 </fo:list-item-body> 
</fo:list-item> </xsl:template> 
<fo:list-block space-before.optimum="4pt"> 
 <fo:list-item> 
 <fo:list-item-label> 
   <fo:block margin-left="2.5pt">1.</fo:block> 
 </fo:list-item-label> 
 <fo:list-item-body> 
   <fo:block font-weight="normal">...</fo:block> 
 </fo:list-item-body> 
 </fo:list-item> 
</fo:list-block>