Readers,
I have a load file to configure a plot:
set terminal postscript eps enhanced colour
set ylabel '{\260}'
According to the manual 'psguide', this code should produce a circle
(=E1=B5=92); instead the graph shows
\260
Any help please?
Yours,
gnuplotatconference.jabber.org
gnuplot 42
mandriva 2008
|
|
0
|
|
|
|
Reply
|
inpost (96)
|
12/2/2009 4:31:59 PM |
|
On Dec 2, 5:31=C2=A0pm, r <inp...@gmail.com> wrote:
> Readers,
>
> I have a load file to configure a plot:
>
> set terminal postscript eps enhanced colour
> set ylabel '{\260}'
>
> According to the manual 'psguide', this code should produce a circle
> (=E1=B5=92); instead the graph shows
>
> \260
>
> Any help please?
>
> Yours,
>
> gnuplotatconference.jabber.org
> gnuplot 42
> mandriva 2008
Try
set encoding iso_8859_1
set ylabel '{\260}'
set terminal postscript eps enhanced colour
instead. It works for me.
Cheers,
Zolt=C3=A1n
|
|
0
|
|
|
|
Reply
|
Zoltan
|
12/2/2009 6:30:55 PM
|
|