fo:引用但未声明的实体
每当我尝试使用 apache fop 1.0 将 .fo 文件转换为 .pdf 时,我都会收到错误“实体 0slash 被引用但未声明”
我发现您可以在 DTD 中声明实体,但是,我的 .fo 文件没有 DTD。是不是应该有一个呢?如果没有,我该如何解决这个问题?最好不使用额外的 .xsl 或其他文件?
I am getting the error "entity 0slash was referenced but not declared" whenever I try to convert .fo file to .pdf with apache fop 1.0
I found out you can declare entities in DTD, however, my .fo file has no DTD. Is it supposed to have one? If not, how can I solve this problem? Prefereably without using additional .xsl or whatever files?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
(注意:在我的回答中,我使用“Oslash”(哦斜杠)而不是问题中的“0slash”(零斜杠)。由于您不能以数字开头实体名称,所以我假设零是一个拼写错误。)
您有几个选项:
您可以修改创建 XSL-FO 的任何内容以输出十六进制引用而不是 ISO 实体引用。在本例中,
Ø
将是Ø
。您可以在 DOCTYPE 声明的内部子集中声明实体。
下面是添加了 DOCTYPE 的 XSL-FO 示例:
如果使用 FOP 处理它,您将得到:
Hello World! Ø
(NOTE: In my answer I'm using the "Oslash" (oh slash) instead of the "0slash" (zero slash) you have in your question. Since you can't begin an entity name with a digit, I'm assuming that the zero is a typo.)
You have a couple of options:
You can modify whatever is creating your XSL-FO to output hex references instead of the ISO entity references. In this instance
Ø
would beØ
.You can declare the entity in the internal subset of a DOCTYPE declaration.
Here is a sample XSL-FO with the DOCTYPE added:
If you process this with FOP, you get:
Hello World! Ø