如何通过python-docx使用桌面

时间:2019-11-01 08:53:43

标签: python-docx tabstop

我是python-docx的新手,我想在一行中同时对齐左缩进和右缩进。但是我找不到一个示例来说明如何做到这一点。有人可以帮我吗?

我想为公司和职位添加一行,例如“ Google Engineer”,我希望“ Google”在一行中与左缩进对齐,而“ Engineer”在一行中右对齐。如何在python-docx中通过在段落格式中添加tabstop来做到这一点?

1 个答案:

答案 0 :(得分:0)

是的,您可以通过添加制表符来解决此问题。

如果您查看the picture,首先需要计算添加制表位的位置。如果要使 Engineer 在同一行(段落)中右对齐,则需要根据页面宽度和左/右页边距计算端点。

然后,在添加制表符时设置WD_TAB_ALIGNMENT.RIGHT是很重要的,这将确保内容右对齐并“粘贴”到右侧。

这是您的案例的示例代码:

import docx
doc = docx.Document()

p = doc.add_paragraph('Google\tEngineer')  # tab will trigger tabstop
sec = doc.sections[0]
# finding end_point for the content 
margin_end = docx.shared.Inches(
    sec.page_width.inches - (sec.left_margin.inches + sec.right_margin.inches))
tab_stops = p.paragraph_format.tab_stops
# adding new tab stop, to the end point, and making sure that it's `RIGHT` aligned.
tab_stops.add_tab_stop(margin_end, docx.enum.text.WD_TAB_ALIGNMENT.RIGHT)

doc.save("test.docx")

希望这会有所帮助, 最好的