Hi,
I have an xsl-fo file which includes an svg graphic. Is there any way
to generate a link in the svg referencing a fo:block? I thought of something
like the following, which does not work, but should illustrate the problem:
<fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format">
<!-- some fo here -->
<fo:instream-foreign-object>
<svg width="100" height="100"
xmlns="http://www.w3.org/2000/svg"
<g>
<!-- this text should link to the fo:block with id="hello" -->
<fo:basic-link internal-destination="hello">
<text x="0" y="0">link to hello</text>
</fo:basic-link>
</g>
</svg>
</fo:instream-foreign-object>
<!-- the block that should be referenced -->
<fo:block id="hello">hello</fo:block>
<!-- some fo here -->
</fo:root>
Can anyone tell me if there is a way to do something like this?
Thanks and greetings,
Marko
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]