(Q8) Generate an element with a computed name, containing nested elements named <description> and <price>.

<$tagname>
   <description> $d </description> ,
   <price> $p </price>
</$tagname>

XSLT equivalent to (Q8)

<xsl:element name="{$tagname}">
  <description><xsl:copy-of select="$d"/></description>
  <price><xsl:copy-of select="$p"/></price>
</xsl:element>
<<<  1 2 3 4 5 6 7 8 9 10 11 12 13 14 15    >>>