Python: 有什么办法可以在word文档中添加脚注吗?
Python: Is there a way I can add a footnote to word document?
我用 python-docx 尝试了以下操作:
section = self.document.sections[0]
footer = section._sectPr.footer
footer.text = "I am here"
我在 docx 文档中找不到明确的 footer/header 说明。是否有解决此问题的方法?
解决方法是:
- 使用 python-docx 创建文档。
- 将名称更改为 'init.docx'
- 评论任何添加新样式的代码
- 打开'init.docx'
- 删除所有内容
- 保存。
- 将 footnote/Headers 添加到 'init.docx'
- 将
self.document = Document('')
更改为 self.document = Document('init.docx')
。
我用 python-docx 尝试了以下操作:
section = self.document.sections[0]
footer = section._sectPr.footer
footer.text = "I am here"
我在 docx 文档中找不到明确的 footer/header 说明。是否有解决此问题的方法?
解决方法是:
- 使用 python-docx 创建文档。
- 将名称更改为 'init.docx'
- 评论任何添加新样式的代码
- 打开'init.docx'
- 删除所有内容
- 保存。
- 将 footnote/Headers 添加到 'init.docx'
- 将
self.document = Document('')
更改为self.document = Document('init.docx')
。