我使用java从HTML模板生成PDF文件。只有当我在所有页面上都有超过1页(包括第一页)时,我才需要进行页码编号。我可以在模板中使用css和HTML。为了提供计算,我使用css:
@page { @bottom-right { content: element(footer); } }
#pagenumber:before { content: counter(page); }
#pagecount:before { content: counter(pages); }
@page { @bottom-right { content: counter(page) ' out of ' counter(pages); } }
和HTML:
<div id="footer">
<span id="pagenumber"></span> out of <span id="pagecount"></span>
</div>
所以我总是有页码编号,不仅仅是当我有超过1页时。我无法在互联网上找到解决方案。我在这里需要某种条件。