gpt4 book ai didi

python - 如何在 python-docx 中将页面大小更改为 A4

转载 作者:太空狗 更新时间:2023-10-29 21:33:32 30 4
gpt4 key购买 nike

我尝试使用 python-docx 创建 Word 文档。创建的文件的字母尺寸为 8.5 x 11 英寸。但在德国,标准格式是 A4 8.27 x 11.69 英寸。

from docx import Document
from docx.shared import Inches

document = Document()

document.add_heading('Document Title', 0)
document.settings


p = document.add_paragraph('A plain paragraph having some ')
p.add_run('bold').bold = True
p.add_run(' and some ')
p.add_run('italic.').italic = True

document.add_heading('Heading, level 1', level=1)
document.add_paragraph('Intense quote', style='IntenseQuote')

document.add_paragraph(
'first item in unordered list', style='ListBullet'
)
document.add_paragraph(
'first item in ordered list', style='ListNumber'
)



table = document.add_table(rows=1, cols=3)
hdr_cells = table.rows[0].cells
hdr_cells[0].text = 'Qty'
hdr_cells[1].text = 'Id'
hdr_cells[2].text = 'Desc'


document.add_page_break()

document.save('demo.docx')

我在文档中找不到关于此主题的任何信息。

最佳答案

from docx.shared import Mm

document = Document()
section = document.sections[0]
section.page_height = Mm(297)
section.page_width = Mm(210)
section.left_margin = Mm(25.4)
section.right_margin = Mm(25.4)
section.top_margin = Mm(25.4)
section.bottom_margin = Mm(25.4)
section.header_distance = Mm(12.7)
section.footer_distance = Mm(12.7)

关于python - 如何在 python-docx 中将页面大小更改为 A4,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43724030/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com