From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.comp.tex.context/9193 Path: main.gmane.org!not-for-mail From: Ron van Ostayen Newsgroups: gmane.comp.tex.context Subject: Re: Greek characters in metapost Date: Thu, 12 Sep 2002 22:27:35 +0200 Sender: owner-ntg-context@let.uu.nl Message-ID: <3D80F8B7.9050106@WbMT.TUDelft.NL> References: <3D807744.8060207@wbmt.tudelft.nl> <20020912161955.78137e40.morawski@gmx.net> NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Trace: main.gmane.org 1035399535 1243 80.91.224.250 (23 Oct 2002 18:58:55 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Wed, 23 Oct 2002 18:58:55 +0000 (UTC) Original-To: ConTeXt Xref: main.gmane.org gmane.comp.tex.context:9193 X-Report-Spam: http://spam.gmane.org/gmane.comp.tex.context:9193 Jens-Uwe Morawski wrote: > On Thu, 12 Sep 2002 13:15:16 +0200 > Ron van Ostayen wrote: > > >>For my PhD thesis I'm experimenting with MetaPost figures (or actually >>gnuplot pictures on the MP terminal). >>However, I've found that some characters, for example the greek >>characters, do not show in the generated postscript. >> > > The PostScript file is not self-contained, i.e. no fonts > are included. Therefore the figure has to be embedded in > a ConTeXt document (\externalfigure) Thanks Jens, This is true, however, I want to have a self-contained postscript file, or rather, a postscript file I can include in a *LaTeX* document. (I know this is the ConTeXt-list but I expected to find a lot of MetaPost experts on this list. :-)) I have tried to add prologues:=2 to the file (which should produce a self-contained postscript file), but the resulting PS-file still doesn't show the alpha. BTW, if I replace the $\alpha$ with $x$ I get a postscript file which shows the x without running it through mptopdf. > > >>A minimal example (test.mp): >> >>beginfig(0); >>u = 1cm; >>draw (1u,0)..(0,1u)..(-1u,0)..(0,-1u)..cycle; >>label.top( btex $\alpha$ etex, (0,0)); >>endfig; >> >>texexec --mptex test.mp >> > > In order to pre-view your MP file you can use mptopdf. > > texexec --mptex test.mp > mptopdf test > > should give test-0.pdf. Here the \alpha should be visible. > > Jens > >