abdulhaq-e
abdulhaq-e

Reputation: 626

matlab font weight is set to normal but appears bold

As the title says, it was working fine but now the numbers in the axes appear to be bold, I tried another computer with the same functions and axes appeared normal (set to normal and appeared normal!).

Here's how it looks like: axes appear bold

If I change it to light it would be ok but why I'm getting this?

It has nothing to do with the 'centre axes' function I'm using.

Edit: Not just the axes, titles and labels as well!

Edit2: Everything in MatLab that has a figure like box appears bold! However, when I export a figure it appears normal

Thanks

Upvotes: 2

Views: 1076

Answers (1)

Amro
Amro

Reputation: 124563

Perhaps you changed the default fonts. Windows uses Arial by default. Try the following:

set(0, 'defaulttextfontname', 'Arial')
set(0, 'defaultaxesfontname', 'Arial')

Upvotes: 1

Related Questions