标签: python pdf reportlab page-numbering
是否可以使用ReportLab生成PDF文件,使得首页(以及可能的目录)从Platypus完成的页码编号中排除?
答案 0 :(得分:3)
是。关于the user guide第5章的第一个例子,SimpleDocTemplate有两个钩子:
doc.build(Story, onFirstPage=myFirstPage, onLaterPages=myLaterPages)
只需更改myLaterPages定义即可有条件地打印页码。