From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.comp.tex.context/16798 Path: main.gmane.org!not-for-mail From: David Arnold Newsgroups: gmane.comp.tex.context Subject: gather Date: Tue, 26 Oct 2004 21:34:48 -0700 Sender: ntg-context-bounces@ntg.nl Message-ID: <3.0.5.32.20041026213448.008c35d0@mail.northcoast.com> Reply-To: mailing list for ConTeXt users NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" X-Trace: sea.gmane.org 1098852020 16107 80.91.229.6 (27 Oct 2004 04:40:20 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Wed, 27 Oct 2004 04:40:20 +0000 (UTC) Original-X-From: ntg-context-bounces@ntg.nl Wed Oct 27 06:40:08 2004 Return-path: Original-Received: from ronja.vet.uu.nl ([131.211.172.88] helo=ronja.ntg.nl) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1CMfbU-0004mv-00 for ; Wed, 27 Oct 2004 06:40:08 +0200 Original-Received: from localhost (localhost.localdomain [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id E20AF1278D; Wed, 27 Oct 2004 06:40:07 +0200 (CEST) Original-Received: from ronja.ntg.nl ([127.0.0.1]) by localhost (ronja.vet.uu.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 25407-04; Wed, 27 Oct 2004 06:40:07 +0200 (CEST) Original-Received: from ronja.vet.uu.nl (localhost.localdomain [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id 3AA581277C; Wed, 27 Oct 2004 06:38:23 +0200 (CEST) Original-Received: from localhost (localhost.localdomain [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id EC9BD1277C for ; Wed, 27 Oct 2004 06:38:21 +0200 (CEST) Original-Received: from ronja.ntg.nl ([127.0.0.1]) by localhost (ronja.vet.uu.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 25425-03-2 for ; Wed, 27 Oct 2004 06:38:21 +0200 (CEST) Original-Received: from smtp.inreach.com (unknown [209.142.2.34]) by ronja.ntg.nl (Postfix) with SMTP id ECA3C12777 for ; Wed, 27 Oct 2004 06:38:20 +0200 (CEST) Original-Received: (qmail 31618 invoked from network); 27 Oct 2004 04:39:41 -0000 Original-Received: from unknown (HELO newmicronpc) (209.209.15.139) by smtp.inreach.com with SMTP; 27 Oct 2004 04:39:41 -0000 X-Sender: darnold@mail.northcoast.com X-Mailer: QUALCOMM Windows Eudora Light Version 3.0.5 (32) Original-To: ntg-context@ntg.nl X-Virus-Scanned: by 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: , Errors-To: ntg-context-bounces@ntg.nl X-Virus-Scanned: by amavisd-new at ntg.nl Xref: main.gmane.org gmane.comp.tex.context:16798 X-Report-Spam: http://spam.gmane.org/gmane.comp.tex.context:16798 All, The default behavior of gather is to center a group of equations. By default, each one is numbered. Try: \documentclass{article} \usepackage{amsmath} \begin{document} \begin{gather} F(x)=\int_0^x f(t)\, dt\\ F'(x)=f(x) \end{gather} \end{document} Compare with: \usemodule[amsl] \starttext \startgather F(x)=\int_0^x f(t)\, dt\\ F'(x)=f(x) \stopgather \stoptext In amsmath, if we don't want the individual equations numbered, we use the * version. Try: \documentclass{article} \usepackage{amsmath} \begin{document} \begin{gather*} F(x)=\int_0^x f(t)\, dt\\ F'(x)=f(x) \end{gather*} \end{document} I hope this helps those who are working on these issues.