From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.comp.tex.context/29381 Path: news.gmane.org!not-for-mail From: Aditya Mahajan Newsgroups: gmane.comp.tex.context Subject: Re: align question Date: Sat, 15 Jul 2006 01:21:15 -0400 (EDT) Message-ID: References: <89F4177B-836F-43E5-B5A3-1F27A123E8AA@cox.net> 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 1152940950 20675 80.91.229.2 (15 Jul 2006 05:22:30 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sat, 15 Jul 2006 05:22:30 +0000 (UTC) Cc: Bruce Wagner Original-X-From: ntg-context-bounces@ntg.nl Sat Jul 15 07:22:27 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 1G1cbi-0002xf-Ef for gctc-ntg-context-518@m.gmane.org; Sat, 15 Jul 2006 07:22:26 +0200 Original-Received: from localhost (localhost [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id 17C1B1289A; Sat, 15 Jul 2006 07:22:26 +0200 (CEST) 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 13389-03-2; Sat, 15 Jul 2006 07:22:09 +0200 (CEST) Original-Received: from ronja.vet.uu.nl (localhost [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id 0640E1289F; Sat, 15 Jul 2006 07:22:08 +0200 (CEST) Original-Received: from localhost (localhost [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id 0AFDE1289F for ; Sat, 15 Jul 2006 07:21:54 +0200 (CEST) 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 13318-04 for ; Sat, 15 Jul 2006 07:21:33 +0200 (CEST) Original-Received: from skycaptain.mr.itd.umich.edu (smtp.mail.umich.edu [141.211.93.160]) by ronja.ntg.nl (Postfix) with SMTP id AC3CD1289A for ; Sat, 15 Jul 2006 07:21:26 +0200 (CEST) Original-Received: FROM aditya (Unknown [24.143.67.101]) BY skycaptain.mr.itd.umich.edu ID 44B87B4D.9F3CD.32475 ; 15 Jul 2006 01:21:19 -0400 Original-To: mailing list for ConTeXt users In-Reply-To: <89F4177B-836F-43E5-B5A3-1F27A123E8AA@cox.net> 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:29381 Archived-At: On Fri, 14 Jul 2006, David Arnold wrote: > On another matter, I'm having some alignment issues. Consider the > following code: > > \starttext > > \startformula > \startalign[n=4,{left, middle, middle, middle}] > aaa&b&cccc&d\\ > a&bbb&c&ddd > \stopalign > \stopformula > > \stoptext > > Compile this and you will notice that the alignment parameters {left, > middle, middle, middle} are ignored. And you can change these to > anything else (left, middle, right), with absolutely no change. Any > idea what is going on here? Wrong syntax. It should be \startalign[n=4,align={left,....}] I would strongly suggest to use \NC aaaa \NC bb \NC d \NR instead of "raw" & and \\. Aditya