[EMAIL PROTECTED] wrote:
<fo:block font-weight="bold" text-align="$col_alignment">
Ah, the real problem: Either use
<fo:block font-weight="bold" text-align="{$col_alignment}">
(Google for "attribute value template")
or use the more verbose form (which allows for dynamic attribute
names):
<fo:block>
<xsl:attribute name="text-align">
<xsl:value-of select="$col_alignment"/>
</xsl:attribute>
...
Either way, it's an XSLT question, which had been better asked on
the XSL list:
http://www.mulberrytech.com/xsl/xsl-list/
J.Pietschmann
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]