From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.comp.tex.context/32696 Path: news.gmane.org!not-for-mail From: Aditya Mahajan Newsgroups: gmane.comp.tex.context Subject: Re: ConTeXt equivalent of plain tex method of loading fonts Date: Fri, 12 Jan 2007 23:22:58 -0500 (EST) Message-ID: References: <45A7AA39.5060302@elvenkind.com> Reply-To: mailing list for ConTeXt users NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1168662208 21672 80.91.229.12 (13 Jan 2007 04:23:28 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sat, 13 Jan 2007 04:23:28 +0000 (UTC) Original-X-From: ntg-context-bounces@ntg.nl Sat Jan 13 05:23:25 2007 Return-path: Envelope-to: gctc-ntg-context-518@m.gmane.org Original-Received: from ronja.vet.uu.nl ([131.211.172.88] helo=ronja.ntg.nl) by lo.gmane.org with esmtp (Exim 4.50) id 1H5aQN-0006FA-6u for gctc-ntg-context-518@m.gmane.org; Sat, 13 Jan 2007 05:23:23 +0100 Original-Received: from localhost (localhost [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id 6D9D3200C4; Sat, 13 Jan 2007 05:19:34 +0100 (CET) Original-Received: from ronja.ntg.nl ([127.0.0.1]) by localhost (smtp.ntg.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 16187-02-3; Sat, 13 Jan 2007 05:19:21 +0100 (CET) Original-Received: from ronja.vet.uu.nl (localhost [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id 55B4E2007F; Sat, 13 Jan 2007 05:19:21 +0100 (CET) Original-Received: from localhost (localhost [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id D98862009A for ; Sat, 13 Jan 2007 05:19:18 +0100 (CET) Original-Received: from ronja.ntg.nl ([127.0.0.1]) by localhost (smtp.ntg.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 16187-02-2 for ; Sat, 13 Jan 2007 05:19:13 +0100 (CET) Original-Received: from hackers.mr.itd.umich.edu (smtp.mail.umich.edu [141.211.14.81]) by ronja.ntg.nl (Postfix) with ESMTP id AFE8220040 for ; Sat, 13 Jan 2007 05:19:12 +0100 (CET) Original-Received: FROM aditya.annarb01.mi.comcast.net (c-68-40-50-205.hsd1.mi.comcast.net [68.40.50.205]) BY hackers.mr.itd.umich.edu ID 45A85EA3.51150.14812 ; 12 Jan 2007 23:23:00 -0500 Original-To: mailing list for ConTeXt users In-Reply-To: <45A7AA39.5060302@elvenkind.com> X-Virus-Scanned: amavisd-new at ntg.nl X-BeenThere: ntg-context@ntg.nl X-Mailman-Version: 2.1.7 Precedence: list List-Id: mailing list for ConTeXt users List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: ntg-context-bounces@ntg.nl Errors-To: ntg-context-bounces@ntg.nl X-Virus-Scanned: amavisd-new at ntg.nl Xref: news.gmane.org gmane.comp.tex.context:32696 Archived-At: On Fri, 12 Jan 2007, Taco Hoekwater wrote: > Aditya Mahajan wrote: > > Hi, > > > > I was using rsfs (RalfSmithFormalScript) using the definition > > > > then I get rsfs7 in the subscripts. So, what is the ConTeXt equivalent > > of the above plain tex method of loading rsfs? > > Something like this, I guess (probably not enough, but it should > give you an idea) > > \starttypescript [math] [modern,computer-modern,latin-modern,ams] [size] > \definebodyfont [17.3pt,14.4pt,12pt,11pt,10pt,9pt][mm][mc=rsfs10 sa 1] > \definebodyfont [8pt,7pt] [mm] [mc=rsfs7 sa 1] > \definebodyfont [6pt,5pt,4pt] [mm] [mc=rsfs5 sa 1] > \stoptypescript > > \definefamilysynonym [default] [scr] [mc] > > \def\mathrsfs#1{{\scr #1}} Thank you. This is what I finally ended up using \starttypescript [math] [modern,computer-modern,latin-modern,ams] [size] \definebodyfont [17.3pt,14.4pt,12pt,11pt,10pt,9pt][mm][mc=rsfs10 sa 1] \definebodyfont [8pt,7pt] [mm] [mc=rsfs7 sa 1] \definebodyfont [6pt,5pt,4pt] [mm] [mc=rsfs5 sa 1] \stoptypescript \definefamilysynonym [default] [scriptfamily] [mc] \def\scr{\fam\purefamily{scriptfamily}} \definetypeface [modern] [mm] [math] [modern] [ams] [encoding=texnansi] \setupbodyfont[reset,modern,11pt] \starttext $\sum_{x \in \scr X}$ \stoptext Aditya