This is an extremely minor inconvinience, so if there is no fix it doesn’t really matter, but if there is a simple fix / I’m being dumb I’d like to know
I can’t get Arial Bold to work, only Arial Rounded MT Bold
The Symbol font doesn’t seem to work for me. The SymbolPi font seems to work, but that is ever-so-slightly different to the Symbol font, and I don’t understand why passing the exact path to the font doesn’t seem to work
I’m not quite sure what’s going on in your second example but you could as a test try to sidestep Makie’s font resolution/caching mechanism and open the FTFont handle yourself. Then you can be sure that you get the right one. If that doesn’t give you the expected results then it might be something about the file:
font = Makie.FreeTypeAbstraction.FTFont(raw"C:\Windows\Fonts\Symbol Regular.ttf")
ax1 = Axis(f[1,1],title="abcef",titlefont = font)
font = Makie.FreeTypeAbstraction.FTFont(raw"C:\Windows\Fonts\Symbol Regular.ttf")
gave an error. Turns out the filename of the fonts is not what is showed by windows in the Fonts folder, and you have to actually open the properties of the file to see the true filename. Using the true filename for arial bold worked