From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.comp.tex.context/31625 Path: news.gmane.org!not-for-mail From: Aditya Mahajan Newsgroups: gmane.comp.tex.context Subject: typo in startformulas in latest beta Date: Sun, 29 Oct 2006 01:22:42 -0500 (EST) Message-ID: Reply-To: mailing list for ConTeXt users NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1162102985 10553 80.91.229.2 (29 Oct 2006 06:23:05 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sun, 29 Oct 2006 06:23:05 +0000 (UTC) Original-X-From: ntg-context-bounces@ntg.nl Sun Oct 29 07:23:01 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 1Ge44P-0007sP-F2 for gctc-ntg-context-518@m.gmane.org; Sun, 29 Oct 2006 07:22:57 +0100 Original-Received: from localhost (localhost [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id C66BC1FEA5; Sun, 29 Oct 2006 07:22:56 +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 31644-02; Sun, 29 Oct 2006 07:22:50 +0100 (CET) Original-Received: from ronja.vet.uu.nl (localhost [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id A58E91FE6A; Sun, 29 Oct 2006 07:22:50 +0100 (CET) Original-Received: from localhost (localhost [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id 8D6E81FE73 for ; Sun, 29 Oct 2006 07:22:48 +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 31643-02 for ; Sun, 29 Oct 2006 07:22:45 +0100 (CET) Original-Received: from tombraider.mr.itd.umich.edu (smtp.mail.umich.edu [141.211.93.161]) by ronja.ntg.nl (Postfix) with SMTP id 309BD1FD26 for ; Sun, 29 Oct 2006 07:22:44 +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 454448B1.EE3F9.29376 ; 29 Oct 2006 01:22:43 -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:31625 Archived-At: Hi Hans, There is a missing carriage return in the definition of \startformulas in the latest beta. In \def\startformulas#1\stopformulas \long\def\startformula##1\stopformula {\advance\scratchcounter\plusone}% \scratchcounter\zerocount #1% preroll should be \long\def\startformula##1\stopformula {\advance\scratchcounter\plusone}% <--- Missing \cr here \scratchcounter\zerocount #1% preroll This causes a number to missed in \starttext \placeformula \startformulas \startformula \startalign \NC a_1 x + b_1 y \NC = c_1 \NR[+] \NC a_2 x + b_2 y \NC = c_2 \NR \stopalign \stopformula \startformula \startalign \NC d_1 u + e_1 v \NC = f_1 \NR \NC d_2 u + e_2 v \NC = f_2 \NR[+] %<-- does not show up % %in present beta \stopalign \stopformula \stopformulas \stoptext Aditya