On 05/07/2015 08:51 AM, GRUNDTVIG NIELSEN Niels AWL-T&P wrote:
I’ve checked Chapter 4. XSLT stylesheets parameters in the helps, and
can’t see how to set the font for generated front matter (ToC, LoF, LoT)
when converting a ditamap to .pdf

Can you point me in the right direction? Thanks.

When you don't find the XSLT stylesheet parameters in

XMLmind DITA Converter Manual, Chapter 4. XSLT stylesheets parameters
http://www.xmlmind.com/ditac/_distrib/doc/manual/xsltParams.html#xsltParams

allowing to implement your customization, then you have to browse the source code of the XSLT stylesheets for an <xsl:attribute-set>.

<xsl:attribute-set> are not documented because there are too many of them (at least one per DITA element; often more than one). That's why you *really* *really* have to browse the source code of the XSLT stylesheets.

What follows is an unauthoritative answer. May be there are more convenient <xsl:attribute-set>s. Please take a look by yourself.



1) A quick look at <XXE_install_dir>/addon/config/dita/xsl/fo/ditac_figureList.xsl allows to find that:

  <xsl:attribute-set name="toc-container">
  </xsl:attribute-set>


or

  <xsl:attribute-set name="toc-part-entry"
                     use-attribute-sets="semi-compact-block-style">
    <xsl:attribute name="font-weight">bold</xsl:attribute>
    <xsl:attribute name="font-size">1.1em</xsl:attribute>
    <xsl:attribute name="line-height">1.21</xsl:attribute>
    <xsl:attribute name="space-before.optimum">0.3em</xsl:attribute>
    <xsl:attribute name="space-before.minimum">0.2em</xsl:attribute>
    <xsl:attribute name="space-before.maximum">0.4em</xsl:attribute>
    <xsl:attribute name="space-after.optimum">0.3em</xsl:attribute>
    <xsl:attribute name="space-after.minimum">0.2em</xsl:attribute>
    <xsl:attribute name="space-after.maximum">0.4em</xsl:attribute>
  </xsl:attribute-set>

could be used to change the font of ToC.



2) A quick look at <XXE_install_dir>/addon/config/dita/xsl/fo/ditac_toc.xsl allows to find that:

  <xsl:attribute-set name="booklist-container">
  </xsl:attribute-set>

or

  <xsl:attribute-set name="booklist" use-attribute-sets="block-style">
    <xsl:attribute
        name="provisional-distance-between-starts">4em</xsl:attribute>
<xsl:attribute name="provisional-label-separation">0.5em</xsl:attribute>
  </xsl:attribute-set>

could be used to change the font of LoF, LoT.



Once the relevant <xsl:attribute-set>s found, you may change them using XMLmind XSL Customizer as follows:

1) Select menu item "Options|Customize Configuration|Customize Document Conversion Stylesheets|".

http://www.xmlmind.com/xmleditor/_distrib/doc/help/customizeConfigurationMenu.html

2) Use the "Customize Document Conversion Stylesheets" dialog box as explained in

http://www.xmlmind.com/xmleditor/_distrib/doc/help/com.xmlmind.xmleditapp.app.part.ConversionStylesheetsEditor.html









--
XMLmind XML Editor Support List
xmleditor-support@xmlmind.com
http://www.xmlmind.com/mailman/listinfo/xmleditor-support

Reply via email to