创建从 SVG 到 XSL-FO / PDF 中的块的超链接
希望有人能帮助我,我被困住了。
我正在从 XML 文档(通过 XSLT2)创建一组 SVG 和 HTML 文件,并且我的 SVG 图形(使用 xlink:href)中有指向 HTML 文件的超链接。基本上,显示带有表格矩形的数据库结构,单击表格即可转到 HTML 中的说明。到目前为止一切顺利。
现在,我的客户告诉我“我需要一个交互式 PDF 文档中的所有内容”。因此,我使用另一个 XSLT 生成一个 XSL-FO 文档,其中包含用于每个表详细信息的 fo:block 和用于图表的流内 SVG。 FO 文档将通过 FOP 进一步处理以生成 PDF。
但现在,我找不到从嵌入 SVG 中的矩形引用同一文档中的 fo:block 的方法? xlink:href 需要对 的引用,那么如何指示我想要指向 fo:block id?或者是否有相当于 的内容?在 FO 中构建?
非常感谢任何帮助/提示!感谢社区。
Hope somebody can help me, I'm stuck.
I am creating a set of SVG's and HTML files from an XML doc (via XSLT2), and I have hyperlinks in my SVG graphics (with xlink:href) to the HTML files. Basically, showing a database structure with rectangles for tables, and a click on a table goes to the explanation in HTML. So far so good.
Now, my customer tells me "I need all that in a single interactive PDF doc". So using another XSLT I produce a single XSL-FO doc with fo:block's for each table details and instream SVG's for the diagrams. The FO doc will be further processed through FOP to produce the PDF.
But now, I can't find a way to refer to a fo:block in the same doc from the rectangle in the embedded SVG? xlink:href expects a reference to an <a name="">, so how to indicate that I want to point to a fo:block id? Or is there an equivalent to the <a name=""> construct in FO?
Any help/hint greatly appreciated! Thanks to the community.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
向 fo:block 添加一个 id 属性,它应该可以工作:
Add an id attribute to the fo:block and it should work: