Tweaking fonts, a Linux PDF editor, and more

Baskervville Glyphs Changing the name of a font Continuing to set up the Linux environment on the Chuwi MiniBook X , I needed the Baskerville * font to work with the templates I've lovingly hand-crafted over the years. I installed Baskervville (note the double 'v'), but since the font name didn't match exactly, Libre Office didn't use it, and instead I got some generic sans serif monstrosity. No problem, found an archived tutorial on how to change the name of the font . tl;dr version, using fonttools (which was already installed on this Fedora 40 machine), use ttx <font filename> to build a .ttx XML file for the font, then edit that XML file, using find-and-replace to swap, e.g., Baskervville to Baskerville. Then run ttx <.ttx file> to recompile the file back to a font file. Then, remove the old .ttf (or .otf or whatever) files from $HOME/.fonts and copy the recompiled files in. Done. Installing fonttools If you don’t already have ttx installed, you’ll...