【发布时间】:2011-02-08 23:23:48
【问题描述】:
我正在用 Reportlab 构建一个 pdf 文档,使用 Paragraph 类:
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)
现在我想在每个页面的末尾添加一个字符串,我该怎么做??
【问题讨论】: