概述:
刚开始用python-docx模块的时候,每写一个标题一个段落都是一串代码设置字体行距大小,代码重复太多,后来发现可以直接定义一个设置标题段落的方法,然后直接调用。
设置标题
#添加标题
def AddHeadText(text, size):
title_ = document.add_heading(level=3)
# title_.alignment = WD_PARAGRAPH_ALIGNMENT.CENTER# 标题居中
title_run = title_.add_run(text) # 添加标题内容
title_run.font.size = Pt(size) # 设置标题字体大小
title_run.font.name = 'Times New Roman' # 设置标题西文字体
title_run.element.rPr.rFonts.set(qn('w:eastAsia'), '微软雅黑') # 设置标题中文字体
title_run.font.color.rgb = RGBColor(0, 0, 0)#字体颜色
设置段落
#添加段落内容(参数1:文本内容,参数2:字体大小,参数3:上行距,参数4:字体粗细,参数5:段落位置)
def AddParaText(text, size, space, thickness, position):
p = document.add_paragraph() # 段落
#判断居中还是靠左,0为靠左
if position == 0:
p.paragraph