From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.comp.tex.context/25465 Path: news.gmane.org!not-for-mail From: Taco Hoekwater Newsgroups: gmane.comp.tex.context Subject: Re: lijgatures in LM Date: Sat, 21 Jan 2006 09:49:34 +0100 Message-ID: <43D1F59E.5030807@elvenkind.com> References: <6faad9f00601201610y181280dgdcc313393c042744@mail.gmail.com> Reply-To: mailing list for ConTeXt users NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1137833429 23937 80.91.229.2 (21 Jan 2006 08:50:29 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sat, 21 Jan 2006 08:50:29 +0000 (UTC) Cc: jacko Original-X-From: ntg-context-bounces@ntg.nl Sat Jan 21 09:50:26 2006 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 ciao.gmane.org with esmtp (Exim 4.43) id 1F0ES1-0002jT-Hk for gctc-ntg-context-518@m.gmane.org; Sat, 21 Jan 2006 09:50:25 +0100 Original-Received: from localhost (localhost [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id 11305127F8; Sat, 21 Jan 2006 09:50:25 +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 00797-02; Sat, 21 Jan 2006 09:50:24 +0100 (CET) Original-Received: from ronja.vet.uu.nl (localhost [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id 2D17E12791; Sat, 21 Jan 2006 09:48:34 +0100 (CET) Original-Received: from localhost (localhost [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id DD6AA12791 for ; Sat, 21 Jan 2006 09:48:32 +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 00797-01 for ; Sat, 21 Jan 2006 09:48:32 +0100 (CET) Original-Received: from post-24.mail.nl.demon.net (post-24.mail.nl.demon.net [194.159.73.194]) by ronja.ntg.nl (Postfix) with SMTP id 0366B1277F for ; Sat, 21 Jan 2006 09:48:31 +0100 (CET) Original-Received: from boo.demon.nl ([82.161.175.147]:49238 helo=[192.168.1.3]) by post-24.mail.nl.demon.net with esmtp (Exim 4.51) id 1F0EQB-000GnO-8z; Sat, 21 Jan 2006 08:48:31 +0000 User-Agent: Mozilla Thunderbird 1.0 (X11/20050215) X-Accept-Language: en-us, en Original-To: mailing list for ConTeXt users In-Reply-To: <6faad9f00601201610y181280dgdcc313393c042744@mail.gmail.com> X-Virus-Scanned: amavisd-new at ntg.nl X-BeenThere: ntg-context@ntg.nl X-Mailman-Version: 2.1.5 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:25465 Archived-At: Mojca Miklavec wrote: > Hello, (the Dutch team), > > Is it possible to prevent the "IJ" ligature in ec encoding in LM fonts > in ConTeXt somehow (except with manual intervention in every word > containing IJ)? I checked the behaviour in LaTeX with > \usepackage[T1]{inputenc} with the default font (some kind of Type 1 > CM, but not LM), but it seems that only LM changes I and J to a > ligature (grrr ...). With the font in LaTeX it works OK. You can do this (only works in pdftex): \definefonthandling [noij][noij][type=tag] \startfonthandling[noij] \settagcode I {\notagcode} \settagcode i {\notagcode} \stopfonthandling \enablehandling[noij] Be warned that this also destroys any kerning info for the I and i. Not a big problem in this case (the number of kernings is minimal) but something to watch out for in general. Cheers, Taco