Path: csiph.com!eternal-september.org!feeder.eternal-september.org!reader01.eternal-september.org!.POSTED!not-for-mail From: =?UTF-8?Q?J=c3=b6rg_Buchholz?= Newsgroups: comp.graphics.apps.gnuplot Subject: Re: Can I use the same gnuplot script file to plot different data files? Date: Wed, 21 Nov 2018 19:19:13 +0100 Organization: A noiseless patient Spider Lines: 37 Message-ID: References: <1123688616.067028.222910@o13g2000cwo.googlegroups.com> <8392b610-487d-4688-ab1c-0cc15de51cc5@googlegroups.com> <738fc952-1faa-4c4a-a51a-7bda36f485d6@googlegroups.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Injection-Date: Wed, 21 Nov 2018 18:19:14 -0000 (UTC) Injection-Info: reader01.eternal-september.org; posting-host="a48644a179cca78bec952a58883648a4"; logging-data="3439"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX18Fzh7NRDPMJpCaIT1dc2UQU98XtXikSk0=" User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Thunderbird/60.3.0 Cancel-Lock: sha1:Aj1LDgYMTUYA5oxP9mZ9WK3n9D8= In-Reply-To: <738fc952-1faa-4c4a-a51a-7bda36f485d6@googlegroups.com> Content-Language: en-GB Xref: csiph.com comp.graphics.apps.gnuplot:4088 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