This is the mail archive of the docbook-apps@lists.oasis-open.org mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [docbook-apps] setting font size based on body.font.master


At 01:39 18/10/2004, Ben Adams wrote:


The following works for me when hard coding the
numbers:

<xsl:attribute name="font-size">12pt</xsl:attribute>

Yep, simple string value.



However, both of the following have no effect:

<xsl:attribute name="font-size">{$body.font.master *
0.8}pt</xsl:attribute>

It produces exactly what you said :-) But the AVT isn't executed/evaluated though.



<xsl:attribute name="font-size"
select="{$body.font.master * 0.8}pt"/>


<xsl:attribute name="font-size">
<xsl:value-of select="concat($body.font.master * 0.8,'pt')"/></xsl:attribute>
Might be better?

I.e. calculate it.

HTH DaveP





Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]