I\'m generating some pdf files using reportlab. I have a certain section that is repeated. It contains of a header and a table:
Story.append(Paragrap
this is the solution that I found going through the reportlab source code:
paragraph = Paragraph(header_string, styleH) paragraph.keepWithNext = True Story.append(paragraph) Story.append(table)