Python:有没有办法在word文档中添加脚注?

时间:2016-08-05 18:35:23

标签: python-2.7 docx python-docx

我用python-docx尝试了以下内容:

section = self.document.sections[0]
footer = section._sectPr.footer
footer.text = "I am here"

我无法在docx文档中找到明确的页脚/标题说明。是否有工作来弥补这一差距?

1 个答案:

答案 0 :(得分:0)

解决方法是:

  • 使用python-docx创建文档。
  • 将名称更改为“init.docx”
  • 评论任何添加新式代码
  • 打开'init.docx'
  • 删除所有内容
  • 保存。
  • 将脚注/标题添加到'init.docx'
  • self.document = Document('')更改为self.document = Document('init.docx')