Path: news.mathworks.com!not-for-mail
From: "Thomas " <thomas.liebscher@uni-potsdam.de>
Newsgroups: comp.soft-sys.matlab
Subject: Re: Print Euro symbol
Date: Fri, 17 Aug 2007 21:51:12 +0000 (UTC)
Organization: Bundeskriminalamt Wiesbaden
Lines: 30
Message-ID: <fa558g$ppv$1@fred.mathworks.com>
References: <fa4vb9$2ep$1@fred.mathworks.com> <fa51an$6$1@fred.mathworks.com>
Reply-To: "Thomas " <thomas.liebscher@uni-potsdam.de>
NNTP-Posting-Host: webapp-02-blr.mathworks.com
Content-Type: text/plain; charset="ISO-8859-1"
Content-Transfer-Encoding: 8bit
X-Trace: fred.mathworks.com 1187387472 26431 172.30.248.37 (17 Aug 2007 21:51:12 GMT)
X-Complaints-To: news@mathworks.com
NNTP-Posting-Date: Fri, 17 Aug 2007 21:51:12 +0000 (UTC)
X-Newsreader: MATLAB Central Newsreader 107947
Xref: news.mathworks.com comp.soft-sys.matlab:424370


Thank you for your prompt answer. 
Your solution works when I print the figure directly in 
verbose mode. Though, it fails when I try to print it 
(figure handle fh) to a file using

    print(fh,'-dpsc2','test.ps');

After distilling it to PDF the Euro symbol is gone. Any 
idea how could this be solved?


"us " <us@neurol.unizh.ch> wrote in message <fa51an$6
$1@fred.mathworks.com>...
> Thomas:
> <SNIP a european...
> 
> one of the solutions
> 
>      eu=sprintf('%c',8364);
>      line(0:1,0:1);
>      title(eu,...
>           'fontsize',32,...
>           'fontname','arial');
>      text(.1,.5,eu,...
>           'fontsize',64,...
>           'fontname','courier new');
> 
> us
>