How can I download alternative fonts to use in Libre Office Writer? I'm looking for cursive fonts in particular.
-
possible duplicated http://askubuntu.com/q/3697/169736 – Braiam Nov 14 '13 at 23:55
-
1Not a duplicate on the basis that LibreOffice is an obtuse piece of %@*! that apparently doesn't recognize freshly installed fonts until you log out entirely and log back in – Doktor J Dec 14 '18 at 17:45
-
1@DoktorJ your comment was the missing piece of the puzzle. Thought I was going mad for a second! – dijksterhuis Nov 16 '20 at 00:33
3 Answers
Fonts that you download from the internet (ttf
and otf
files) can be installed and used in LibreOffice Writer and other programs by placing them in the /home/<your username>/.local/share/fonts
directory. If it does not exist you will need to create it. Though there's no need to muck around in a terminal or copy files around. If you double click on a font file in the file manager, Font Viewer will automatically open. You can then install the font with the press of a button:
There are also a good number of fonts available directly in the Ubuntu repositories. These can be installed just like any other package. You might also be interested in TypeCatcher which lets you view and install Google Webfonts for local use.

- 155
- 1
- 4
- 17

- 37,412
-
It is important to close LibreOffice proper after coping the new fonts... means to really close all instances of it eg.
killall soffice.bin
– wittich Apr 07 '21 at 12:10
LibreOffice will read all installed fonts in /usr/share/fonts/
, which is where fonts packages will be installed by the Software Center, and are accessible to all users (except if it is a LaTeX font package, but that's another story).
Additionally, if you copy/download individual fonts, you can put them in your ~/.fonts/
folder (or double click on the font file and click the button "Install Font"), which will make them available only to the current user. You can use these fonts in LibreOffice too.
If ~/.fonts/
does not exist, you can create it from the file explorer or from command line:
mkdir ~/.fonts

- 103

- 5,451
In your home directory, make a link named .fonts (dot fonts) to wherever you have the fonts you want to add.
.fonts -> /home/<your username>/myfonts

- 17,838