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(Paragraph(header_string, styleH))
            Story.append(table) 

How can I group the paragraph with the table (in latex I would put them into the same environment) so that in case of a page brake, the paragraph and table stay together? Currently the paragraph sometimes floats at the end of one page and the table starts on top of the next page.

link|improve this question

feedback

2 Answers

You can try to put them together in a KeepTogether flowable, like so:

Story.append(KeepTogether([Paragraph(header_string, styleH), table])

However be aware that, last I checked, the implementation was not perfect and would still split up items too frequently. I know it does a good job of keeping a single flowable together that would otherwise split, like if you were to say:

Story.append(KeepTogether(Paragraph(header_string, styleH))

then that paragraph would not get split unless it was impossible for it not to be.

If KeepTogether doesn't work for you, I'd suggest creating a custom Flowable with your paragraph and table inside it and then during layout make sure your custom Flowable subclass does not allow itself to be split up.

link|improve this answer
feedback
up vote 0 down vote accepted

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)
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.