From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.comp.tex.context/32465 Path: news.gmane.org!not-for-mail From: Aditya Mahajan Newsgroups: gmane.comp.tex.context Subject: Re: Problems with "mathalign" Date: Wed, 3 Jan 2007 14:18:12 -0500 (EST) Message-ID: References: <6faad9f00701030931l59be89a8y5a6cc5e14ebdcc70@mail.gmail.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 1167851933 20756 80.91.229.12 (3 Jan 2007 19:18:53 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Wed, 3 Jan 2007 19:18:53 +0000 (UTC) Original-X-From: ntg-context-bounces@ntg.nl Wed Jan 03 20:18:50 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 1H2BdI-00035m-8n for gctc-ntg-context-518@m.gmane.org; Wed, 03 Jan 2007 20:18:40 +0100 Original-Received: from localhost (localhost [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id F119E1FA86; Wed, 3 Jan 2007 20:15:49 +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 02476-01-3; Wed, 3 Jan 2007 20:15:41 +0100 (CET) Original-Received: from ronja.vet.uu.nl (localhost [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id 82E891FBD0; Wed, 3 Jan 2007 20:15:41 +0100 (CET) Original-Received: from localhost (localhost [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id 45E8F20019 for ; Wed, 3 Jan 2007 20:15:38 +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 02476-01-2 for ; Wed, 3 Jan 2007 20:15:33 +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 666621FFFD for ; Wed, 3 Jan 2007 20:15:33 +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 459C0176.51603.13150 ; 3 Jan 2007 14:18:14 -0500 Original-To: mailing list for ConTeXt users In-Reply-To: <6faad9f00701030931l59be89a8y5a6cc5e14ebdcc70@mail.gmail.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:32465 Archived-At: On Wed, 3 Jan 2007, Mojca Miklavec wrote: > Hello, > > I wanted to keep Aditya busy now that he finished his wonderful new > module ;), so ... > > > I first wanted to ask how to number subformulas in a certain way, but > that I figured out that numbering is already causing some problems on > its own. > > > Consider the following examples: > > \starttext > > This is almost OK, but has one formula number too much here: > > \startbuffer > \placeformula > \startformula > \startalign[m=2,distance=3cm] > a & =b > & A & =B \\ > c & =d > & C & =D \\ > \stopalign > \stopformula > \stopbuffer > \typebuffer > \getbuffer Do not use the latex syntax. > This results in a very weird formula numbering Something is broken. AFAIK, this should not give you any number. > \startbuffer > \placeformula > \startformula > \startalign[m=2,distance=3cm] > \NC a \NC =b > \NC A \NC =B \NR > \NC c \NC =d > \NC C \NC =D \NR > \stopalign > \stopformula > \stopbuffer > \typebuffer > \getbuffer > > Adding [+] helps, but than we have the same problem as at the beginning: Adding [+] is necessary. > \startbuffer > \placeformula > \startformula > \startalign[m=2,distance=3cm] > \NC a \NC =b > \NC A \NC =B \NR[+] > \NC c \NC =d > \NC C \NC =D \NR[+] > \stopalign > \stopformula > \stopbuffer > \typebuffer > \getbuffer I can confirm that there is an extra number. I do not know what is causing this. I am not aware of anything in core-mat has changed. I compiled My Way on mathalign, and everything has an extra number. hmm... > Without placeforumla, but with [+] we don't get any numbering at all: Yes you need the placefurmula. > > \startbuffer > \startformula > \startalign[m=2,distance=3cm] > \NC a \NC =b > \NC A \NC =B \NR[+] > \NC c \NC =d > \NC C \NC =D \NR[+] > \stopalign > \stopformula > \stopbuffer > \typebuffer > \getbuffer > > \stoptext > > CtxTools | context version: 2006.12.27 11:34 > (After running "ctxtools --update" I just managed to break everything.) > > Any clue? Something is broken. Aditya