Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.graphics.apps.gnuplot > #4088
| From | Jörg Buchholz <bookwood4new@freenet.de> |
|---|---|
| Newsgroups | comp.graphics.apps.gnuplot |
| Subject | Re: Can I use the same gnuplot script file to plot different data files? |
| Date | 2018-11-21 19:19 +0100 |
| Organization | A noiseless patient Spider |
| Message-ID | <pt47j2$3bf$1@dont-email.me> (permalink) |
| References | <1123688616.067028.222910@o13g2000cwo.googlegroups.com> <ec6e2983-99a2-4a40-9a1f-51b8760c8fc9@googlegroups.com> <8392b610-487d-4688-ab1c-0cc15de51cc5@googlegroups.com> <pt3m8a$hk8$1@dont-email.me> <738fc952-1faa-4c4a-a51a-7bda36f485d6@googlegroups.com> |
On 21/11/2018 15:03, srishtinagu19@gmail.com wrote:
> Thanks a lot.. Its working with :gnuplot> load 'scriptname'
> I am writing greek letters but its not printing that letter.
> For that I am using-
> gnuplot>set termoption enhanced
> gnuplot> set xlabel "{/Symbol d}" (I want to print delta)
>
> its giving me /Symbol d... What should I do ?
What "pdf-termianl" do you use? What says "gnuplot> show term"?
Here with pdfcairo as "pdf-termianl" there is a Δ in the pdf output file
when I use gnuplot> set xlabel "{/Symbol D}".
Instead of "/Symbol D" you can wrote your script in unicode (UTF8). Than
you can use all unicode signs directly in gnuplot.
Example script (utf8test.plt):
set encoding utf8
set xlabel 'Δ Delta'
set term pdfcairo
set out 'test.pdf'
plot sin(x)
set out
gnuplot> load 'utf8test.plt'
Now there is "Δ Delta" as xlabel in the pdf file
Jörg
Back to comp.graphics.apps.gnuplot | Previous | Next — Previous in thread | Next in thread | Find similar
Re: Can I use the same gnuplot script file to plot different data files? srishtinagu19@gmail.com - 2018-11-20 23:22 -0800
Re: Can I use the same gnuplot script file to plot different data files? Jörg Buchholz <bookwood4new@freenet.de> - 2018-11-21 11:53 +0100
Re: Can I use the same gnuplot script file to plot different data files? srishtinagu19@gmail.com - 2018-11-21 03:40 -0800
Re: Can I use the same gnuplot script file to plot different data files? Jörg Buchholz <bookwood4new@freenet.de> - 2018-11-21 14:23 +0100
Re: Can I use the same gnuplot script file to plot different data files? srishtinagu19@gmail.com - 2018-11-21 06:03 -0800
Re: Can I use the same gnuplot script file to plot different data files? Jörg Buchholz <bookwood4new@freenet.de> - 2018-11-21 19:19 +0100
Re: Can I use the same gnuplot script file to plot different data files? srishtinagu19@gmail.com - 2018-11-21 22:00 -0800
Re: Can I use the same gnuplot script file to plot different data files? srishtinagu19@gmail.com - 2018-11-21 22:12 -0800
Re: Can I use the same gnuplot script file to plot different data files? Jörg Buchholz <bookwood4new@freenet.de> - 2018-11-22 11:16 +0100
Re: Can I use the same gnuplot script file to plot different data files? srishtinagu19@gmail.com - 2018-11-22 02:28 -0800
Re: Can I use the same gnuplot script file to plot different data files? srishtinagu19@gmail.com - 2018-11-22 02:44 -0800
Re: Can I use the same gnuplot script file to plot different data files? srishtinagu19@gmail.com - 2018-11-23 01:34 -0800
Re: Can I use the same gnuplot script file to plot different data files? srishtinagu19@gmail.com - 2018-11-24 22:47 -0800
Re: Can I use the same gnuplot script file to plot different data files? srishtinagu19@gmail.com - 2018-11-25 08:52 -0800
csiph-web