I would like to help with the problem that I am experiencing in Octave 3.6.4 on Ubuntu 13.04.
I looked at several ways to change the font size and / or font of a legend, title or plot axis; and I found that the code I find is not working. I tried to copy several pieces of code designed to resize text or font, and I could not change them.
The font that Octave displays when plotting is a regular, fixed-width font.
Can anyone help me? I tried things like ...
xlabel('x-title', 'FontSize', 20)
or
xlabel('x-title', 'FontName', 'Vera')
or
foo = xlabel('x-title') set(foo, 'FontSize', 20)
or
foo = xlabel('x-title) set(foo, 'FontName', 'Vera')
And not one changes the font.
source share