Paragraphクラスを使用して、reportlabでPDFドキュメントを作成しています。
doc = SimpleDocTemplate(response, leftMargin=lateral_margin, rightMargin=lateral_margin,
topMargin=top_bottom_margin, bottomMargin=top_bottom_margin)
Document = []
Document.append(Paragraph("bla bla bla bla", my_style))
doc.build(Document)
すべてのページの最後に文字列を追加したいのですが、どうすればよいですか?