MATLAB: What happend about the plotting style

graphr2014bgraphics

As I know that starting in R2014b, MATLAB graphics titles use a bold and slightly larger font for better visibility. I am using R2014b, what happend to my plotting style?
The left is a example picture from help center, the right is my plotting. You can see the difference between the titles.

Best Answer

What happens if you do the following?
get(gca,'FontSize')
get(get(gca,'Title'),'FontSize')
get(get(gca,'Title'),'FontWeight')
My guess is that it's going to be something interesting about your font, so you should probably also do this:
get(gca,'FontName')