Possible to Insert page in word document with python-docx?

别等时光非礼了梦想. 提交于 2020-01-05 04:51:26

问题


I just read through the documentation on python-docx.

They mention several times that added content is created at the end of the document, but I didn't notice any way to alter this functionality.

Does anyone know how to add a new page to a pre-existing document, but make it page 1?

Thanks!


回答1:


The short answer is the library doesn't support that just yet, although those features are high on the backlog so will be among the next to be implemented.

To get it done in the meantime you'll need to go down to the XML level with a "workaround" function. If you want to add this use case on this issue on GitHub I'll put together some workaround code you can use. https://github.com/python-openxml/python-docx/issues/27



来源:https://stackoverflow.com/questions/22950093/possible-to-insert-page-in-word-document-with-python-docx

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!