On Wed, 2004-02-04 at 21:13, Glen Mazza wrote: > <xsl:param name="versionParam" select="1.0"/> > ... > ... > <fo:block>Version <xsl:value-of > select="$versionParam"/> ... > > But it keeps outputting "Version 1" in the resultant > PDF. What is the standard way of getting it to > display "Version 1.0"?
select='format-number($versionParam,"##.0")' should work. -- John Austin <[EMAIL PROTECTED]>