From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.comp.tex.context/11441 Path: main.gmane.org!not-for-mail From: Guy Worthington Newsgroups: gmane.comp.tex.context Subject: Re: Concrete and Euler Date: 16 Mar 2003 09:58:01 +0800 Sender: ntg-context-admin@ntg.nl Message-ID: References: <200303141312.57541.quasar@econ.muni.cz> Reply-To: ntg-context@ntg.nl NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1047779590 32739 80.91.224.249 (16 Mar 2003 01:53:10 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sun, 16 Mar 2003 01:53:10 +0000 (UTC) Original-X-From: ntg-context-admin@ntg.nl Sun Mar 16 02:53:08 2003 Return-path: Original-Received: from ref.vet.uu.nl ([131.211.172.13] helo=ref.ntg.nl) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 18uNKm-0008Vv-00 for ; Sun, 16 Mar 2003 02:53:08 +0100 Original-Received: from ref.ntg.nl (localhost.localdomain [127.0.0.1]) by ref.ntg.nl (Postfix) with ESMTP id 21E0C10B1C; Sun, 16 Mar 2003 02:53:57 +0100 (MET) Original-Received: from main.gmane.org (main.gmane.org [80.91.224.249]) by ref.ntg.nl (Postfix) with ESMTP id 4B7B110AEC for ; Sun, 16 Mar 2003 02:51:37 +0100 (MET) Original-Received: from list by main.gmane.org with local (Exim 3.35 #1 (Debian)) id 18uNI2-0008Qr-00 for ; Sun, 16 Mar 2003 02:50:18 +0100 X-Injected-Via-Gmane: http://gmane.org/ Original-To: ntg-context@ref.ntg.nl Original-Received: from news by main.gmane.org with local (Exim 3.35 #1 (Debian)) id 18uNHw-0008QZ-00 for ; Sun, 16 Mar 2003 02:50:12 +0100 Original-Lines: 57 Original-X-Complaints-To: usenet@main.gmane.org User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.2 Errors-To: ntg-context-admin@ntg.nl X-BeenThere: ntg-context@ntg.nl X-Mailman-Version: 2.0.13 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: mailing list for ConTeXt users List-Unsubscribe: , List-Archive: Xref: main.gmane.org gmane.comp.tex.context:11441 X-Report-Spam: http://spam.gmane.org/gmane.comp.tex.context:11441 Emil Hedevang Lohse wrote: > Is there an easy way to make ConTeXt use the Concrete Computer > Modern font for normal text and the AMS Euler font for math On the assumption that a partial solution is better than none, here's what I came up with. You'll notice when you use the \tt font switch the script does f*ck-all -- it just ignores my rscale parameter. The first script I've called type-concrete.tex and have installed it in the directory ./texmf/tex/context/user/ and then updated my filenames datebase. % -type-concrete.tex ---- \starttypescript [concreteTT] \definetypeface [concreteTT] [tt] [mono] [computer-modern] [default] [rscale=1.1] \stoptypescript \starttypescript [ccr] \usetypescript [serif] [concrete] [name,size] \usetypescript [mono] [concreteTT] [name] \usetypescript [mono] [default] [size] \usetypescript [math] [euler] [name,size] \stoptypescript % ---------- The second script is a test file: % ---------- \usetypescriptfile [type-concrete] \usetypescript [ccr] \setupbodyfont [serif,10pt] \starttext \input tufte {\tt \input knuth } $$ 10\mu + 20\Gamma = 30 $$ \stoptext % ---------