From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.comp.tex.context/25520 Path: news.gmane.org!not-for-mail From: Mojca Miklavec Newsgroups: gmane.comp.tex.context Subject: Re: lijgatures in LM Date: Mon, 23 Jan 2006 17:20:33 +0100 Message-ID: <6faad9f00601230820p7327d997y6eb5f0f44a7fc963@mail.gmail.com> References: <6faad9f00601201610y181280dgdcc313393c042744@mail.gmail.com> <43D1F59E.5030807@elvenkind.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 Content-Transfer-Encoding: quoted-printable X-Trace: sea.gmane.org 1138033333 16881 80.91.229.2 (23 Jan 2006 16:22:13 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 23 Jan 2006 16:22:13 +0000 (UTC) Original-X-From: ntg-context-bounces@ntg.nl Mon Jan 23 17:22:07 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 1F14Qq-00078C-EN for gctc-ntg-context-518@m.gmane.org; Mon, 23 Jan 2006 17:20:41 +0100 Original-Received: from localhost (localhost [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id 01A4B1280C; Mon, 23 Jan 2006 17:20:40 +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 12998-03; Mon, 23 Jan 2006 17:20:36 +0100 (CET) Original-Received: from ronja.vet.uu.nl (localhost [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id 6E735127DB; Mon, 23 Jan 2006 17:20:36 +0100 (CET) Original-Received: from localhost (localhost [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id 7AB99127DB for ; Mon, 23 Jan 2006 17:20:35 +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 12893-05-2 for ; Mon, 23 Jan 2006 17:20:34 +0100 (CET) Original-Received: from uproxy.gmail.com (uproxy.gmail.com [66.249.92.202]) by ronja.ntg.nl (Postfix) with SMTP id 837E4127A3 for ; Mon, 23 Jan 2006 17:20:34 +0100 (CET) Original-Received: by uproxy.gmail.com with SMTP id m2so684330uge for ; Mon, 23 Jan 2006 08:20:33 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=t+TTcElrUgsvaknJAseP1qe82LSiGbCRXZCW8SQjQ2LGjPa63Smb7NMifUYBb8xY00rc5wsLVL+qx4OeWszpRNVFOZaWr59lV39RlINQDRzghqZds6maSUyn5N4ycCzKM/rHKF9VkEUQ9wZKyerfhglaixQVDLl7q6wyZkIHX10= Original-Received: by 10.49.20.12 with SMTP id x12mr353130nfi; Mon, 23 Jan 2006 08:20:33 -0800 (PST) Original-Received: by 10.48.162.5 with HTTP; Mon, 23 Jan 2006 08:20:33 -0800 (PST) Original-To: mailing list for ConTeXt users In-Reply-To: <43D1F59E.5030807@elvenkind.com> Content-Disposition: inline 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:25520 Archived-At: On 1/21/06, Taco Hoekwater wrote: > 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=3Dtag] > \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. Thanks a lot. I took a look at the source now. It would be nicer to say something like \startlanguagespecifics[nl] \enablehandling[ij] \stoplanguagespecifics and disable it everywhere else, but this would be a way too deep hack, which could break more than it would fix (and since it's irreversible it wouldn't work that way anyway). Thanks for the pointer, Mojca