请问怎么使用docx结构化读取标题和标题下的内容,如果标题下面有图片怎么判断读取呢

怎么设置边框颜色???????

@hhh1111 这是一张合并单元格的不同表格。您希望得到什么结果?找到您希望设置边框的行并设置它。

日语字体设置成MS Gothic不生效

设置不生效,不知道为什么

@hhh1111 使用此代码:

cell.cell_format.shading.background_pattern_color = drawing.Color.blue

@hhh1111 好的,我去看看

@hhh1111 我对“MS Gothic”字体没有意见。所有中文单词都按预期使用这种字体。你的电脑上有这种字体吗?

也适用于日语

我没有这个字体 就给日语设置成MS Gothic,数字设置成Times New Roman

如果没有需要怎么安装呢??

@hhh1111 这是 MS Gothic 和 Times New Roman 字体:

msgothic.zip (6.7 MB)

此外,在 Windows 字体设置中,您可以点击 “下载所有语言的字体”,也许它就会为您安装。

mac怎么安装??????

@hhh1111 在 Mac 上,我认为您需要手动安装所有必要的字体。打开每个提供的字体,然后点击安装。

怎么设置页面页脚呢
image.png (28.6 KB)

页眉格式 页脚就设置页面就行

@hhh1111 你需要做什么?您需要创建页眉/页脚并向其中添加一些现有内容吗?或者,是否需要向页眉/页脚添加新数据?

需要添加数据信息。需要,格式和内容 如图所示

@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")