[scilab-Users] Scilab plot annotation is too small

Harold Dessau hrdessau at knology.net
Fri Nov 18 19:26:19 CET 2011


Serge,

Thanks for responding. However, the following code snippet failed in the calling routine:

ax=gca(0)
ax.font_size=10
exec('/Euler3/plott.sce',2);
plott(xplot,yplot,zplot,k);
The error message complained about the gca function. Should the snippet have been placed inside the plot routine itself?

Hal.






On Nov 18, 2011, at 11:58 AM, Serge Steer wrote:

> Le 18/11/2011 18:06, Harold Dessau a écrit :
>> I have generated some Scilab 2D plots and copied them onto MS Word at full scale. They are just fine. However, when I must compress the plots to fit a
>> double column page format the annotation also shrinks and is too small to be legible.
>> 
>> I would like to tell Scilab to make the original annotation in a larger font. This is undocumented in the help menu.
>> 
>> Hal Dessau
> I suppose you are taking about font sizes. You can change it by the following ways
> 
> 1 for the current graphic window:
>   ax=gca();
>   ax.font_size=7;
> 
>   or
>    ax.fractional_font="on";
>    ax.font_size=6;//here font_size given in pt
> 
> 2 for all subsequent graphic windows: (change of the parameter value in the ressource used to initiate the axes)
>   da=gda();
>   da.fractional_font="on";
>   da.font_size=6;//here font_size given in pt
> 
> 
> In the same manner you can also change colors , font_styles, .....
> 
> 
> Serge Steer

-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.scilab.org/pipermail/users/attachments/20111118/5edf2006/attachment.htm>


More information about the users mailing list