<xsl:attribute-set> 的示例
下面的示例创建一个称为 title-style
的命名属性集并在模板规则中使用。
XML 文件 (book.xml)
XSLT 文件 (attrset.xsl)
输出
以下是格式化输出:
以下是处理器输出,为了清楚起见,增加了分行符。
<?xml version="1.0"?>
<fo:block font-size="12pt"
font-weight="bold"
quadding="start"
xmlns:fo="http://www.w3.org/1999/XSL/Format">
The First Heading
</fo:block>
<fo:block font-size="12pt"
font-weight="bold"
quadding="start"
xmlns:fo="http://www.w3.org/1999/XSL/Format">
The Next Heading
</fo:block>