[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Turn off TeX for legend labels
From: |
Ivan Sutoris |
Subject: |
Re: Turn off TeX for legend labels |
Date: |
Wed, 15 Apr 2009 00:09:51 +0200 |
On Tue, Apr 14, 2009 at 7:27 PM, andy buckle <address@hidden> wrote:
>
> I have been able to set 'interpreter' to 'none' for titles and axes labels,
> but I can't seem to get it to work for legends. I would be grateful for
> advice. (I tried this on 3.0.1)
> --
> View this message in context:
> http://www.nabble.com/Turn-off-TeX-for-legend-labels-tp23044064p23044064.html
> Sent from the Octave - General mailing list archive at Nabble.com.
>
> _______________________________________________
> Help-octave mailing list
> address@hidden
> https://www-old.cae.wisc.edu/mailman/listinfo/help-octave
>
I think legend is not yet implemented fully in Matlab-compatible way.
I've been able to disable tex rendering in legend by setting
"interpreter" property of corresponding line object:
lh = plot(1:5) % returns handle to line object
legend('\xi')
set(lh, 'interpreter', 'none')
Regards
Ivan Sutoris