怎么设置边框颜色???????
日语字体设置成MS Gothic不生效
设置不生效,不知道为什么
我没有这个字体 就给日语设置成MS Gothic,数字设置成Times New Roman
如果没有需要怎么安装呢??
@hhh1111 这是 MS Gothic 和 Times New Roman 字体:
msgothic.zip (6.7 MB)
此外,在 Windows 字体设置中,您可以点击 “下载所有语言的字体”,也许它就会为您安装。
mac怎么安装??????
需要添加数据信息。需要,格式和内容 如图所示
@hhh1111 您可以采用以下方法. 同样的方法也适用于页脚。请注意,每个部分都有自己的页眉和页脚。因此,如果您的文档有多个部分,您需要为每个部分进行设置。
doc = aw.Document()
builder = aw.DocumentBuilder(doc)
section = doc.first_section
header_primary = section.headers_footers.get_by_header_footer_type(aw.HeaderFooterType.HEADER_PRIMARY)
if header_primary is None:
footer_primary = aw.HeaderFooter(doc, aw.HeaderFooterType.HEADER_PRIMARY)
footer_primary.append_child(aw.Paragraph(doc))
section.headers_footers.add(footer_primary)
builder.move_to_header_footer(aw.HeaderFooterType.HEADER_PRIMARY)
table = builder.start_table()
builder.insert_cell()
builder.paragraph_format.alignment = aw.ParagraphAlignment.LEFT
builder.write("Row 1 Cell 1 text")
builder.insert_cell()
builder.paragraph_format.alignment = aw.ParagraphAlignment.RIGHT
builder.write("Row 1 Cell 2 text")
builder.end_row()
builder.insert_cell()
builder.cell_format.borders.bottom.line_style = aw.LineStyle.SINGLE
builder.paragraph_format.alignment = aw.ParagraphAlignment.LEFT
builder.write("Row 2 Cell 1 text")
builder.insert_cell()
builder.paragraph_format.alignment = aw.ParagraphAlignment.RIGHT
builder.write("Row 2 Cell 2 text")
builder.end_row()
builder.end_table()
table.clear_borders()
for cell in table.last_row.cells:
cell = cell.as_cell()
cell.cell_format.borders.bottom.line_style = aw.LineStyle.SINGLE
doc.save("output.docx")