使用 ODFpy 将节添加到 OpenDocument 文本文件

发布于 2024-12-08 15:04:44 字数 148 浏览 4 评论 0原文

我正在使用 Python2.7 和 ODFpy 编写 OpenDocument Text (ODT) 文件。有没有办法使用现有的 ODFpy API 将部分(格式 -> 部分...)添加到文档中?有没有办法从另一个文档导入它们然后填充它们,或者以其他方式从另一个文档获取样式?

I am using Python2.7 and ODFpy to write an OpenDocument Text (ODT) file. Is there a way using the existing ODFpy API to add sections (a la Format->Sections...) to the document? Is there a way to import them from another document and then populate them, or to otherwise fetch the styling from another document?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

皓月长歌 2024-12-15 15:04:44

可以通过如下方法将节添加到文档中:

from odf import text as odftext
from odf import opendocument
document = opendocument.OpenDocument()
document.text.addElement(odftext.Section(name="section1"))

A section can be added to a document by a method something like this:

from odf import text as odftext
from odf import opendocument
document = opendocument.OpenDocument()
document.text.addElement(odftext.Section(name="section1"))
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文