OASIS Mailing List ArchivesView the OASIS mailing list archive below
or browse/search using MarkMail.

 


Help: OASIS Mailing Lists Help | MarkMail Help

docbook-apps message

[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]


Subject: font size of one element (type)


Hello one more time,

I feel that the EBNF blocks are too weird in normal font size, so I changed them to extra small using a template, as below (font-size="xx-small", line 6).

This works fine, but seems very ham-fisted.

Is there a better way to do this?

/Tomas



|<xsl:template match="d:productionset">
| <xsl:variable name="id"><xsl:call-template name="object.id"/></xsl:variable>
|  <xsl:choose>
|    <xsl:when test="d:title">
| <fo:block id="{$id}" xsl:use-attribute-sets="formal.object.properties"
|                font-size="xx-small" >
|        <xsl:call-template name="formal.object.heading">
|          <xsl:with-param name="placement" select="'before'"/>
|        </xsl:call-template>
|        <fo:table table-layout="fixed" width="100%">
|          <fo:table-column column-number="1" column-width="3%"/>
|          <fo:table-column column-number="2" column-width="15%"/>
|          <fo:table-column column-number="3" column-width="5%"/>
|          <fo:table-column column-number="4" column-width="52%"/>
|          <fo:table-column column-number="5" column-width="25%"/>
|          <fo:table-body start-indent="0pt" end-indent="0pt">
| <xsl:apply-templates select="d:production|d:productionrecap"/>
|          </fo:table-body>
|        </fo:table>
|      </fo:block>
|    </xsl:when>
|    <xsl:otherwise>
|      <fo:table id="{$id}" table-layout="fixed" width="100%">
|        <fo:table-column column-number="1" column-width="3%"/>
|        <fo:table-column column-number="2" column-width="15%"/>
|        <fo:table-column column-number="3" column-width="5%"/>
|        <fo:table-column column-number="4" column-width="52%"/>
|        <fo:table-column column-number="5" column-width="25%"/>
|        <fo:table-body start-indent="0pt" end-indent="0pt">
| <xsl:apply-templates select="d:production|d:productionrecap"/>
|        </fo:table-body>
|      </fo:table>
|    </xsl:otherwise>
|  </xsl:choose>
|</xsl:template>


[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]