How to change default theme fonts

For example “Times new roman(Body)” I can only set it to “Time new roman”

@Mark030 You can use the following code to achieve this:

doc = aw.Document()
builder = aw.DocumentBuilder(doc)

# modify theme
theme = doc.theme
theme.minor_fonts.latin = "Times New Roman"

# set theme font
builder.font.theme_font = aw.themes.ThemeFont.MINOR
builder.write("This text has theme font set")

doc.save("C:\\Temp\\out.docx")