Is it possible to generate a PDF file using ReportLab in such a way that the front page (and possibly table of contents) are excluded from the page numbering done by Platypus?

link|improve this question
feedback

1 Answer

up vote 1 down vote accepted

Yes. The first example on chapter 5 of the user guide, SimpleDocTemplate has two hooks:

doc.build(Story, onFirstPage=myFirstPage, onLaterPages=myLaterPages)

Just change myLaterPages definition to conditionally print the page number.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.