XSL-FO (Fop) を使用して、外部 PDF へのリンクを作成することに成功しました。
<fo:basic-link show-destination="new">
<xsl:attribute name="external-destination">foo.pdf</xsl:attribute>
</fo:basic-link>
しかし今、この外部 PDF のアンカーに到達したいと思います。だから私はそのようなものを構築しようとしました:
<fo:basic-link show-destination="new">
<xsl:attribute name="external-destination">foo.pdf#anchorId</xsl:attribute>
</fo:basic-link>
残念ながら、生成されたリンクをクリックすると、エラーが発生します。ドキュメントfoo.pdf%23anchorIdを開こうとします。
私の .fo ファイルでは、リンクは # で正しいですが、この#は PDF での変換中に誤って解釈されます。
この問題を解決するアイデアはありますか?
ありがとう、
ヨハン