1<?xml-stylesheet type="text/xml" href="#style1"?>
2<!DOCTYPE doc SYSTEM "stand-2.7-1.dtd">
3<doc>
4<head>
5<xsl:stylesheet id="style1"
6		version="1.0"
7		xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
8		xmlns:fo="http://www.w3.org/1999/XSL/Format">
9<xsl:import href="stand-2.7-1.xsl"/>
10<xsl:template match="id('foo')">
11  <fo:block font-weight="bold"><xsl:apply-templates/></fo:block>
12</xsl:template>
13<xsl:template match="xsl:stylesheet">
14  <!-- ignore -->
15</xsl:template>
16</xsl:stylesheet>
17</head>
18<body>
19<para id="foo">
20...
21</para>
22</body>
23</doc>
24