防止xsl-fo中最后一面出现空白页



我使用xsl-fo和apache-fop生成pdf文档。我有不同的fo页面顺序(封面、toc、印记和"主要内容")。

在主要内容中,我处理xml文件中的数据,这很好。

在主要内容的开头,我开始数页面,并在底部/右侧显示。有了这个,我遇到了一个问题,它在"主要内容"之前显示了一个空白页面,我可以通过在之前的页面序列上添加"强制页面计数="无强制"来解决这个问题。

但是我有一个空白页后的主要内容序列,有什么想法我可以解决这个问题吗?

主要内容之前的页面顺序:

<fo:page-sequence master-reference="imprint" force-page-count="no-force">
...
</fo:page-sequence>

主要内容:

<fo:page-sequence master-reference="per-Gruppe" initial-page-number="1">
                <fo:static-content flow-name="header">
                    <xsl:call-template name="doc-header" match=""/>
                    <fo:block/>
                </fo:static-content>
                <fo:static-content flow-name="footer">
                    <xsl:call-template name="doc-footer"/>
                    <fo:block/>
                </fo:static-content>
                <fo:flow flow-name="xsl-region-body">
                    <xsl:for-each select="//lb">
                        <xsl:call-template name="Kapitel" select="name"/>
                        <xsl:for-each select="per-group/pe">
                            <xsl:call-template name="st.Table" select="."/>
                        </xsl:for-each>
                        <xsl:for-each select="cu-group/cu">
                            <xsl:call-template name="st.Table" select="."/>
                        </xsl:for-each>
                        <xsl:if test="position()=last()">
                            <fo:block id="lastpage"/>
                        </xsl:if>
                    </xsl:for-each>
                </fo:flow>
            </fo:page-sequence>

有什么建议吗?

谢谢。

好的,我解决了它。我执行以下步骤。

  1. 我把for each循环放在页面序列之外
  2. 然后我用xsl:choot将序列括起来,在xsl:choose中我检查位置
  3. 结果,我调用模板页面序列和->"st.table"模板
  4. 在模板(st.table)中,我检查结果,如果它是最后一个位置,我设置lastpage,并阻止设置分页符后属性(这就是我在最后得到一个空白页的原因)

页面顺序:

<xsl:for-each select="//lb">
                <xsl:choose>
                    <xsl:when test="position() = 1">
                        <fo:page-sequence master-reference="per-Gruppe" initial-page-number="1">
                            ...
                        </fo:page-sequence>
                    </xsl:when>
                    <xsl:otherwise>
                        <fo:page-sequence master-reference="per-Gruppe">
                            ...
                            <fo:flow flow-name="xsl-region-body">
                                ...
                                <xsl:for-each select="cu-group/cu">
                                    <xsl:call-template name="st.Table" select=".">
                                        <xsl:with-param name="last_pos" select="$last_pos" />
                                    </xsl:call-template>
                                </xsl:for-each>
                            </fo:flow>
                        </fo:page-sequence>
                    </xsl:otherwise>
                </xsl:choose>
            </xsl:for-each>

模板:

<xsl:template name="st.Table" match=".">
        <xsl:param name="last_pos" select="false()" />
        ...
        <xsl:if test="$last_pos">
            <fo:block id="lastpage"/>       
        </xsl:if>
        <xsl:if test="$last_pos=false()">
            <fo:block page-break-after="always" />
        </xsl:if>
    </xsl:template>

相关内容

  • 没有找到相关文章

最新更新