I am running OpenSuse Leap 42.2 and have just recently noticed, that the titles of my MATLAB figures look weird:
As you can see, the spacing is strange and I also have a different font in mind. Any ideas on how to fix this problem?
I don't know why that happens (missing font in OpenSuse?), but you can set the default figure font globally:
set(0, 'DefaultAxesFontName','Cambria');
Include this in your startup.m for convenience.
startup.m
I had the same problem on linux. What you can do is to set the font for every figure manually to a default matlab font or write a script which does it for you.
I don't know why that happens (missing font in OpenSuse?), but you can set the default figure font globally:
Include this in your
startup.m
for convenience.