Hi
(I just subscribed, so I apologize if this has been discussed before).
I have made a xsl stylesheet which is doing a fo conversion from a
xml-file to pdf. Everything is working perfect besides linking from
the pdf bookmark menu to specific target in the pdf document. So
could anyone, with more experience and skills with fo conversions,
please tell me what I'm missing? As you see below, the xsl:template
grabs h2 in the xml-file, formats it and, in addition, puts the
heading in a pdf bookmark menu. But how do a make a link from the
heading in the bookmark menu to targets in the main document?
<xsl:template match="xhtml:h2">
<fo:block font-size="16pt" font-family="Times" space-
before.optimum="16pt" text-align="left" keep-with-next="always">
<xsl:apply-templates />
<fox:outline internal-destination="sec2">
<fox:label>
<xsl:value-of select="xhtml:h2"/>
<xsl:apply-templates />
</fox:label>
</fox:outline>
</fo:block>
</xsl:template>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]