Featured image of post Fix missing formula fonts for WPS Office on Linux

Fix missing formula fonts for WPS Office on Linux

Introduction

Usually WPS Office offers one of the best compatibility on Linux with weird proprietary ms office document formats including document with some complex formatting and formulas. But in order for the formulas to display correctly some custom fonts required, and by default they are missing on most of the Linux system. In that case after launching the WPS Office you will see the error message saying:

Some formula symbols might not be displayed correctly due to missing fonts Symbol, Wingdings, Wingdings 2, Wingdings 3, Webdings, MT Extra.

Missing formula fonts error message for WPS Office

Fix the fonts issue

To fix the issue you just need to download the missing and install them in your Linux system.

Download fonts files

Download needed fonts and save them in some folder. You can just click on every file below to download it:

Install downloaded fonts

Create a folder that is required for formula fonts, by typing this command in the terminal:

sudo mkdir -p /usr/share/fonts/kingsoft

Then copy downloaded files to destination folder:

1
2
3
4
5
6
sudo cp WEBDINGS.TTF /usr/share/fonts/kingsoft
sudo cp WINGDNG2.ttf /usr/share/fonts/kingsoft
sudo cp WINGDNG3.ttf /usr/share/fonts/kingsoft
sudo cp mtextra.ttf /usr/share/fonts/kingsoft
sudo cp symbol.ttf /usr/share/fonts/kingsoft
sudo cp wingding.ttf /usr/share/fonts/kingsoft

And make your user the owner of the folder:

sudo chown -R $USER:$USER /usr/share/fonts/kingsoft

Invalidate the font cache

To invalidate your system font cache, run this command:

sudo fc-cache -vfs

Conclution

After necessary fonts are installed close all the WPS office processes and try to launch it again, the error should not be shown after launch, and you should be able to use formula formatting.

WPS Office formula displaying after the fix

All rights reserved.