A family of Microsoft word processing software products for creating web, email, and print documents.
Hello @Waas
This happens because Word maintains a separate East Asian font setting from the font used for Latin/Western text. When you switch to Microsoft Pinyin and start entering Chinese, Word uses the East Asian font defined by the current style, which explains why it switches back to SimSun or DengXian. Microsoft exposes this internally as the NameFarEast font property.
Since Source Han Serif TC VF is already installed, try modifying the Normal style, rather than only selecting the font from the Home ribbon:
- Go to Home > Styles.
- Right-click Normal > Modify.
- Select Format > Font.
- If Word displays separate options for Latin text and Asian text, set the Asian text font to Source Han Serif TC VF.
- Save the change to the document/template as appropriate.
If your Word version doesn't expose the Asian-font field in that dialog, you can verify what Word is actually assigning by selecting some Chinese text and running this VBA command:
MsgBox Selection.Font.NameFarEast
Microsoft specifically documents Font.NameFarEast as the property Word uses to get or set the font for East Asian text.
So changing Design > Fonts alone may not solve this—the theme/default Western font and the style's East Asian font can be different settings.
Also make sure Source Han Serif TC VF actually contains the Chinese glyphs you're entering. If the requested glyph isn't present, Office can substitute another installed East Asian font. Microsoft documents this font-substitution behavior as well.
Sharing you this reference:
Microsoft Learn – Word Font.NameFarEast property | https://learn.microsoft.com/en-us/office/vba/api/word.font.namefareast?
If NameFarEast reports SimSun/DengXian even after modifying Normal, that would narrow this down considerably; we can then set the East Asian font explicitly in the template rather than changing it after typing.
Please "Accept the Answer" if this information helped you. This will help us and others in the community as well.