From: Push Head on
Hi everyone,

Can anyone tell me how to display special symbols in the figure
dialog box, such as: Greek letters, upper\lower letters, fractions
etc.

Thanks alot,
P.
From: Michael Salloker on
Push Head schrieb:
> Hi everyone,
>
> Can anyone tell me how to display special symbols in the figure
> dialog box, such as: Greek letters, upper\lower letters, fractions
> etc.
>
> Thanks alot,
> P.

Use tex commands (you find them in the online documentation - search for
text).

A short example:

t=[0:1e-3:10];
plot(t,sin(t))
title('y=sin(\omegat), \omega = 1')

Michael