Thu 21 Oct 2010 03:33:26 PM UTC, comment #4:
I can not actually see any any change in the font, but it at least accepts it, see output.
Don't forget that this is windows (if that has any bearing on your comment about X11)
Attached ps and pdf versions, which looks even worse
------------- Current script ------------------
close all
clear all
set (0, "defaultaxesfontname", "Helvetica")
set (0, "defaulttextfontname", "Helvetica")
get (0, "defaultaxesfontname")
get (0, "defaulttextfontname")
figure
subplot( 4, 1, 1 )
plot( [ 1 2 3 ], [ 1.2334 2.24324 1 ] ./ 10 );
ylabel( "apa" );
title( "fdsa" );
xlabel( "fdas" );
subplot( 4, 1, 2 )
plot( [ 1 2 3 ], [ 1.2334 2.24324 1 ] ./ 100 );
ylabel( "apa" );
title( "fdsa" );
xlabel( "fdas" );
subplot( 4, 1, 3 )
plot( [ 1 2 3 ], [ 1.2334 2.24324 1 ] ./ 1000 );
ylabel( "apa" );
title( "fdsa" );
xlabel( "fdas" );
subplot( 4, 1, 4 )
plot( [ 1 2 3 ], [ 1.2334 2.24324 1 ] ./ 10000 );
ylabel( "apa" );
title( "fdsa" );
xlabel( "fdas" );
print -dpdf printed.pdf
print -dpsc printed.ps
----------------- Output -------------------
ans = Helvetica
ans = Helvetica
(file #21746, file #21747)
|