From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.comp.tex.context/32657 Path: news.gmane.org!not-for-mail From: Aditya Mahajan Newsgroups: gmane.comp.tex.context Subject: ConTeXt equivalent of plain tex method of loading fonts Date: Thu, 11 Jan 2007 04:12:43 -0500 (EST) Message-ID: 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 1168506798 17616 80.91.229.12 (11 Jan 2007 09:13:18 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Thu, 11 Jan 2007 09:13:18 +0000 (UTC) Original-X-From: ntg-context-bounces@ntg.nl Thu Jan 11 10:13:16 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 1H4vzl-0001VH-Qf for gctc-ntg-context-518@m.gmane.org; Thu, 11 Jan 2007 10:13:13 +0100 Original-Received: from localhost (localhost [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id 859771FFA3; Thu, 11 Jan 2007 10:09:37 +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 13599-01; Thu, 11 Jan 2007 10:09:25 +0100 (CET) Original-Received: from ronja.vet.uu.nl (localhost [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id 51CE11FB99; Thu, 11 Jan 2007 10:09:23 +0100 (CET) Original-Received: from localhost (localhost [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id 4E9141FB9B for ; Thu, 11 Jan 2007 10:09:20 +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 12894-02 for ; Thu, 11 Jan 2007 10:09:12 +0100 (CET) Original-Received: from tombraider.mr.itd.umich.edu (smtp.mail.umich.edu [141.211.93.161]) by ronja.ntg.nl (Postfix) with ESMTP id 4433D1FB6D for ; Thu, 11 Jan 2007 10:09:10 +0100 (CET) Original-Received: FROM aditya.annarb01.mi.comcast.net (c-68-40-50-205.hsd1.mi.comcast.net [68.40.50.205]) BY tombraider.mr.itd.umich.edu ID 45A5FF8C.6AED4.31258 ; 11 Jan 2007 04:12:45 -0500 Original-To: mailing list for ConTeXt users 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:32657 Archived-At: Hi, I was using rsfs (RalfSmithFormalScript) using the definition \def\mathrsfs#1{\text{\definedfont[RalfSmithFormalScript]#1\/}} rsfs comes in three design sizes, 10, 7, and 5. However $\max_{x \in \mathrsfs{X}}$ uses rsfs10 rather than 7. This is because RalfSmithFormalScript is a synonyn for rsfs10. If I use the plain tex method of loading rsfs \font\tenscr = rsfs10 at 12pt %bodyfontsize \font\sevenscr = rsfs7 at 9pt %scriptfontsize \font\fivescr = rsfs5 at 7pt %scriptscriptfontsize \skewchar\tenscr = '177 \skewchar\sevenscr = '177 \skewchar\fivescr = '177 \newfam\scrfam \textfont\scrfam = \tenscr \scriptfont\scrfam = \sevenscr \scriptscriptfont\scrfam = \fivescr \def\scr{\fam\scrfam} then I get rsfs7 in the subscripts. So, what is the ConTeXt equivalent of the above plain tex method of loading rsfs? Aditya