From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.comp.tex.context/9209 Path: main.gmane.org!not-for-mail From: Ron van Ostayen Newsgroups: gmane.comp.tex.context Subject: Re: Greek characters in metapost (solution) Date: Sat, 14 Sep 2002 11:15:06 +0200 Sender: owner-ntg-context@let.uu.nl Message-ID: <3D82FE1A.4050908@WbMT.TUDelft.NL> References: <3D807744.8060207@wbmt.tudelft.nl> <20020913021250.591cdf54.morawski@gmx.net> <3D8194A2.9090102@WbMT.TUDelft.NL> <200209140935.42932.angerweit@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 1035399550 1375 80.91.224.250 (23 Oct 2002 18:59:10 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Wed, 23 Oct 2002 18:59:10 +0000 (UTC) Original-To: NTG ConTeXt Mailing List Xref: main.gmane.org gmane.comp.tex.context:9209 X-Report-Spam: http://spam.gmane.org/gmane.comp.tex.context:9209 I've finally found what was causing the disappearance of the $\alpha$ in the MP-figure. RECAP: This is a LaTeX and MP problem, but I think it could be a ConTeXt problem if you take the long way to your PDF-result. (context, dvips, ps2pdf) MP-file 'test.mp' =================== % BEGPRE verbatimtex \documentclass{article} \begin{document} etex % ENDPRE beginfig(0); label( btex $x-\alpha-x$ etex, (0,0)); endfig; % BEGPOST verbatimtex \end{document} etex % ENDPOST end. =================== LaTeX-file 'test.tex' =================== \documentclass{article} \usepackage{graphicx} \begin{document} \includegraphics{test.0} $x-\alpha-x$ \end{document} =================== Now, if we run: mpost --tex=latex test latex test dvips -Ppdf test -o test.ps ps2pdf test.ps test.pdf the resulting test.pdf doesn't show the -\alpha- in the MP-figure This is caused by the settings (at least for the texlive distribution) in config.pdf which is called by the -Ppdf option. In this file the option G is set which means: % Character shifting. You want to do this using the BlueSky/AMS/Y&Y fonts. % It remaps certain ``control character'' positions to an another range % where these characters are repeated. This character shifting works wround % bugs in some tools such as older versions of the Acrobat Reader. Apparently, there is a conflict between the shifted characters in the text and the non-shifted characters in the MP-figure. So, I have turned this option off (hopefully without any repercussions), and all is well. Thanks for all your help. Ron