使用 docbook 工具链生成 XSL-fo 文件时在文本文件中包含图像
Including image in text file when generating XSL-fo file using docbook toolchain
我正在使用 docbook 工具链创建 pdf 文档。我按照以下格式引用此 link http://www.stevestreeting.com/2010/03/07/building-a-new-technical-documentation-tool-chain/
1] 有一个包含所有内容的文本文件
2] 使用 asciidoc.py
将此文本文件转换为 xml 文件
3] 使用生成的 xml 文件并参考 docbook xsl 文件使用 saxon.jar 生成 .fo 文件
4]将生成的.fo文件作为apache fop的输入,生成pdf文件作为最终结果。
在 .fo 文件中,当我包含 < fo:external-graphic> 标签时,我能够在 pdf 文档中查看图像。
<fo:block><fo:external-graphic width="auto" height="auto" content-width="36pt" src="url(images/artifact.PNG)"/></fo:block>
我的要求是我不应该编辑.fo文件,生成的.fo文件应该已经有这个标签。谁能给我一些关于如何编辑我的文本文件或任何 docbook xsl 文件参数的输入。
AsciiDoc 有独立的内联和块图像宏。
- 内联:
image:<target>[<attributes>]
。参见 http://www.methods.co.nz/asciidoc/asciidoc.css-embedded.html#X9
- 块:
image::<target>[<attributes>]
。注意额外的 :
。参见 http://www.methods.co.nz/asciidoc/asciidoc.css-embedded.html#X49
我正在使用 docbook 工具链创建 pdf 文档。我按照以下格式引用此 link http://www.stevestreeting.com/2010/03/07/building-a-new-technical-documentation-tool-chain/
1] 有一个包含所有内容的文本文件
2] 使用 asciidoc.py
将此文本文件转换为 xml 文件3] 使用生成的 xml 文件并参考 docbook xsl 文件使用 saxon.jar 生成 .fo 文件
4]将生成的.fo文件作为apache fop的输入,生成pdf文件作为最终结果。
在 .fo 文件中,当我包含 < fo:external-graphic> 标签时,我能够在 pdf 文档中查看图像。
<fo:block><fo:external-graphic width="auto" height="auto" content-width="36pt" src="url(images/artifact.PNG)"/></fo:block>
我的要求是我不应该编辑.fo文件,生成的.fo文件应该已经有这个标签。谁能给我一些关于如何编辑我的文本文件或任何 docbook xsl 文件参数的输入。
AsciiDoc 有独立的内联和块图像宏。
- 内联:
image:<target>[<attributes>]
。参见 http://www.methods.co.nz/asciidoc/asciidoc.css-embedded.html#X9 - 块:
image::<target>[<attributes>]
。注意额外的:
。参见 http://www.methods.co.nz/asciidoc/asciidoc.css-embedded.html#X49