From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.comp.tex.context/25456 Path: news.gmane.org!not-for-mail From: David Arnold Newsgroups: gmane.comp.tex.context Subject: Align a compound inequality Date: Fri, 20 Jan 2006 19:23:22 -0800 Message-ID: <49477F6D-FCD3-4608-8DA0-8FCEA94BCD7F@cox.net> Reply-To: mailing list for ConTeXt users NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 (Apple Message framework v746.2) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1137813894 9676 80.91.229.2 (21 Jan 2006 03:24:54 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sat, 21 Jan 2006 03:24:54 +0000 (UTC) Original-X-From: ntg-context-bounces@ntg.nl Sat Jan 21 04:24:50 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 1F09Mt-0008B6-UJ for gctc-ntg-context-518@m.gmane.org; Sat, 21 Jan 2006 04:24:48 +0100 Original-Received: from localhost (localhost [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id AD7E71285A; Sat, 21 Jan 2006 04:24:46 +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 30600-02; Sat, 21 Jan 2006 04:24:42 +0100 (CET) Original-Received: from ronja.vet.uu.nl (localhost [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id B12B91283F; Sat, 21 Jan 2006 04:24:42 +0100 (CET) Original-Received: from localhost (localhost [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id DB5EE1283F for ; Sat, 21 Jan 2006 04:24:41 +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 30548-02 for ; Sat, 21 Jan 2006 04:24:40 +0100 (CET) Original-Received: from fed1rmmtao09.cox.net (fed1rmmtao09.cox.net [68.230.241.30]) by ronja.ntg.nl (Postfix) with SMTP id 1C9B112826 for ; Sat, 21 Jan 2006 04:24:39 +0100 (CET) Original-Received: from [10.0.1.2] (really [70.191.56.23]) by fed1rmmtao09.cox.net (InterMail vM.6.01.05.02 201-2131-123-102-20050715) with ESMTP id <20060121032442.XMJC25099.fed1rmmtao09.cox.net@[10.0.1.2]> for ; Fri, 20 Jan 2006 22:24:42 -0500 Original-To: Context Mailing List List X-Mailer: Apple Mail (2.746.2) 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:25456 Archived-At: All, I have: \placeformula[-] \startformula \startalign[m=2] 3-2x&<-1 & 3-2x&>1\\ -2x&<-4 & -2x&>-2\\ x&>2 & x&<1 \stopalign \stopformula And it works. However, I want to sqeeze the word "or" between the inequalities on the first row so that it reads: 3 - 2x < -1 or 3 - 2x > 1 How can I do this? I am not sure what m and n are meant to do with this code. Hans said n=n_of_columns and m=n_of_pairs, but I am not sure what these mean as relates to my problem above. Ideas?