[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: printing greek characters
From: |
tmacchant |
Subject: |
Re: printing greek characters |
Date: |
Mon, 30 May 2016 16:17:07 -0700 (PDT) |
Octave 4.0,0
> graphics_tolkit qt or fltk
>
> plot([ 0 1],[0 1],'k');
> text(0.5,0.5,'\lambda^2')
>
> produces a lovely greek character in the middle of the display, but
>
> print -deps greektest.eps
>
> produces an eps file w/o the greek character.
>
> This is more in the way of a query to add the capability than anything
> else. Sometimes greek characters are a must.
>
> Clinton Winant
Back to the first question,
If you have the TeX in your environments, please execute the below
%**********************
close all
graphics_toolkit qt
plot([ 0 1],[0 1],'k');
text(0.5,0.5,'\lambda^2')
print -deps greek_qt.eps
close all
graphics_toolkit gnuplot
plot([ 0 1],[0 1],'k');
text(0.5,0.5,'\lambda^2')
print -deps greek_gnuplot.eps
close all
%**********************
representation like \lambda is called the TeX mode.
See the manual
https://www.gnu.org/software/octave/doc/interpreter/Use-of-the-interpreter-Property.html#Use-of-the-interpreter-Property
As is written, note that TeX mode works only on gnuplot graphics toolkit.
--
View this message in context:
http://octave.1599824.n4.nabble.com/printing-greek-characters-tp4677231p4677283.html
Sent from the Octave - General mailing list archive at Nabble.com.
- Re: printing greek characters, (continued)
- Re: printing greek characters, Dmitri A. Sergatskov, 2016/05/29
- Re: printing greek characters, Dmitri A. Sergatskov, 2016/05/29
- Re: printing greek characters, Clinton Winant, 2016/05/29
- Re: printing greek characters, Dmitri A. Sergatskov, 2016/05/29
- Re: printing greek characters, Clinton Winant, 2016/05/29
- Re: printing greek characters, Dmitri A. Sergatskov, 2016/05/29
- Re: printing greek characters, Francesco Potortì, 2016/05/30
- Re: printing greek characters, Dmitri A. Sergatskov, 2016/05/30
- Re: printing greek characters, Clinton Winant, 2016/05/30
- Re: printing greek characters, Clinton Winant, 2016/05/29
Re: printing greek characters,
tmacchant <=