Код
<doc>
<p>Это текст параграфа первая строка которого
будет представлена малыми заглавными буквами</p>
</doc>
Таблица стилей XSL
<?xml version=10?>
<xslstylesheet xmlnsxsl=http//wwww3org/1999/XSL/Transform
xmlnsfo=http//wwww3org/1999/XSL/Format
version=10>
<xsltemplate match=p>
<foblock>
<foinitial-property-set font-variant=small-caps/>
<xslapply-templates/>
</foblock>
</xsltemplate>
</xslstylesheet>
Результирующий Экземпляр элементы и атрибуты в пространстве имён fo
<foblock>
<foinitial-property-set font-variant=small-caps>
</foinitial-property-set>This is the text of a paragraph that is going to be
presented with the first line in small-caps
</foblock>
66112Рисунок с Фотографией
Код
<doc>
<figure>
<photo image=TH0317Ajpg/>
<caption>Cieng Tamlung of Cieng Mai</caption>
</figure>
</doc>
В этом примере изображение (foexternal-graphic) помещено как центрированный объект уровня блока
Заголовок центрируется с 10мм отступами
Таблица стилей XSL
<?xml version=10?>
<xslstylesheet xmlnsxsl=http//wwww3org/1999/XSL/Transform
xmlnsfo=http//wwww3org/1999/XSL/Format
version=10>
<xsltemplate match=figure>
<foblock>
<xslapply-templates/>
</foblock>
</xsltemplate>
<xsltemplate match=photo>
<foblock text-align=center>
<foexternal-graphic src={@image}/>
</foblock>
</xsltemplate>
<xsltemplate match=caption>
<foblock space-before=3pt text-align=center
start-indent=10mm end-indent=10mm>
<xslapply-templates/>
</foblock>
</xsltemplate>
</xslstylesheet>
Элемент fo и дерево атрибутов
<foblock>
<foblock text-align=center>
<foexternal-graphic src=TH0317Ajpg/>
</foblock>
<foblock space-before=3pt text-align=center start-indent=10mm
end-indent=10mm>Cieng Tamlung of Cieng Mai</foblock>
</foblock>