Determining Last page position in xsl-fo

前端 未结 2 1702
自闭症患者
自闭症患者 2021-01-29 05:42

Can we somehow determine the position of the last-page in XSL-FO? If I want to place my footer only on the last page, then how it could be done? As Input data varies and is not

相关标签:
2条回答
  • 2021-01-29 05:57

    This is how you could define the last page. I don`t know your structure but you can add this in a block and reference with your footer.

     <fo:block id="LASTPAGE"></fo:block>
    
    0 讨论(0)
  • 2021-01-29 06:07

    Hope, it's not too late. But anyway, for all interested people:

    1. Create a page master

      <fo:simple-page-master master-name="my-last-page">...</fo:simple-page-master>

      and put your footer as a "region-after" into that master.

    2. Add this to your repeatable-page-master-alternatives

      <fo:conditional-page-master-reference page-position="last" master-reference="my-last-page"/>

    0 讨论(0)
提交回复
热议问题