问候,
我正在使用PISA生成一些不错的网页pdf。无论如何,我需要在pdf文档的最后一页放置一个页脚div -only-。我在官方文档中找到了“@page lastPage”标签,但我无法使其正常工作。我告诉你一些我的代码:
<style type="text/css">
@page {
size: {{ pagesize }};
margin: 1cm;
margin-bottom: 5.6cm;
margin-top: 7cm;
@frame header {
-pdf-frame-content: headerContent;
top:1cm;
margin-left: 1cm;
margin-right: 1cm;
height:6.5cm;
}
@frame middle{
-pdf-frame-content: middleContent;
top:6.5cm;
margin-left: 1cm;
margin-right: 1cm;
height:14cm;
}
}
@page lastPage{
size: {{ pagesize }};
margin: 1cm;
margin-bottom: 5.6cm;
margin-top: 7cm;
@frame header {
-pdf-frame-content: headerContent;
top:1cm;
margin-left: 1cm;
margin-right: 1cm;
height:6.5cm;
}
@frame middle{
-pdf-frame-content: middleContent;
top:6.5cm;
margin-left: 1cm;
margin-right: 1cm;
height:11cm;
}
@frame footer {
-pdf-frame-content: footerContent;
bottom: 0cm;
margin-left: 1cm;
margin-right: 1cm;
height:5.5cm;
text-align:left;
}
}
</style>
和html:
...
<div id="headerContent">my header</div>
<div id="middleContent">my content</div>
<div id="footerContent">I want this foot in the last page only</div>
...
你能帮助我吗?
答案 0 :(得分:1)
你现在可能已经找到了一种解决方法,但我在the pisa mailing list偶然发现了这个问题:
<pdf:nextpage template='lastPage' />
从文档中不清楚,但我认为为了使用不同的页面布局,您需要手动指定中断。