xml - 如何使用 xsl-fo 页脚和页眉生成 pdf?

标签 xml xslt pdf footer xsl-fo

我正在尝试生成 pdf,但我不知道如何将页眉和页脚添加到每个页面中。我正在使用 xsl-fo 命名空间,这里是 xsl 代码的根目录。

  <xsl:template match="ROOT">
        <fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format">
              <fo:layout-master-set>
                    <fo:simple-page-master master-name="simpleA4"
                          page-height="450mm" page-width="350mm" margin-top="20mm"
                          margin-bottom="20mm" margin-left="20mm" margin-right="20mm">
                          <fo:region-body border="solid thick black" />
                    </fo:simple-page-master>
                    <fo:page-sequence-master master-name="SequenceMaster1">
                          <fo:repeatable-page-master-reference
                                maximum-repeats="3" master-reference="simpleA4" />
                    </fo:page-sequence-master>
              </fo:layout-master-set>
              <xsl:apply-templates />
        </fo:root>
  </xsl:template>

和我的页面模板:

  <xsl:template match="PAGE">
        <fo:page-sequence master-reference="SequenceMaster1"
              text-align="center">
              <fo:flow flow-name="xsl-region-body">
                    <fo:block font-family="Arial" text-align="left"
                          language="tr">
                          <!-- ======================================Common Bigger table========================================================================================= -->
                          <fo:table width="100%" border-before-width="thin"
                                border-top-width="thick">
                                <fo:table-column column-width="310mm" />
                                <fo:table-body break-after="page" border-width="1mm" border-style="solid" height="410mm">
                                      <fo:table-row>
                                            <fo:table-cell padding-left="2mm" height="410mm">
                                                  <xsl:apply-templates />
                                            </fo:table-cell>
                                      </fo:table-row>
                                </fo:table-body>
                          </fo:table>
                    </fo:block>
              </fo:flow>
        </fo:page-sequence>
  </xsl:template>

最佳答案

我是这样做的 - 在“fo:layout-master-set”中,我的 page-master 看起来像这样:

      <fo:simple-page-master master-name="section1-first-page" page-width="8.268055555555555in" page-height="11.693055555555556in" margin-top="35.45pt" margin-bottom="35.45pt" margin-right="70.9pt" margin-left="70.9pt">
         <fo:region-body margin-top="21.25pt" margin-bottom="21.25pt"></fo:region-body>
         <fo:region-before region-name="first-page-header" extent="11in"></fo:region-before>
         <fo:region-after region-name="first-page-footer" extent="11in" display-align="after"></fo:region-after>
      </fo:simple-page-master>

fo:region-before 定义页眉区域名称,而 fo:region-after 页脚区域名称。

要添加您必须添加到“fo:page-sequence”的内容,在“fo:flow”之前:

      <fo:static-content flow-name="first-page-header">
         <fo:block><fo:inline>HEADER TEXT</fo:inline></fo:block>
      </fo:static-content>
      <fo:static-content flow-name="first-page-footer">
         <fo:block><fo:inline>FOOTER TEXT</fo:inline></fo:block>
      </fo:static-content>

您显然可以将流程名称更改为您想要的任何名称。这只是我的代码中的一个示例。

关于xml - 如何使用 xsl-fo 页脚和页眉生成 pdf?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18401079/

相关文章:

javascript - 将 XSL 参数传递给 JS

java - 错误: open failed: ENOENT (No such file or directory) add gallery image in document pdf

android - 如何使放大/缩小停留在最终位置

xml - R:如何获取站点时间的父属性和节点值?

java - 运行 XSL 转换 oracle db,而不是 java 应用程序

ruby - Watir-Webdriver 如何使用 Watir 浏览器在 Chrome 中获取嵌入的 pdf 文本

ruby-on-rails - Ruby on Rails - 压缩和下载 pdf 文件

java - Android:共享菜单,我的菜单充气器无法解析我的资源

XML Sitemaps - 创建和管理 XML Sitemaps 有充分的理由吗?

java - 如何通过电子邮件将 xslt 报告发送给 xls 文件中给出的用户列表?