From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.comp.tex.context/25648 Path: news.gmane.org!not-for-mail From: Vit Zyka Newsgroups: gmane.comp.tex.context Subject: Re: Substack in Context Date: Sat, 28 Jan 2006 14:46:40 +0100 Message-ID: <43DB75C0.8090201@seznam.cz> References: <43DB4918.8060505@elvenkind.com> <43DB5B1B.50902@elvenkind.com> 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 1138456011 27921 80.91.229.2 (28 Jan 2006 13:46:51 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sat, 28 Jan 2006 13:46:51 +0000 (UTC) Original-X-From: ntg-context-bounces@ntg.nl Sat Jan 28 14:46:49 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 1F2qPd-0005VB-UA for gctc-ntg-context-518@m.gmane.org; Sat, 28 Jan 2006 14:46:46 +0100 Original-Received: from localhost (localhost [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id 365A312837; Sat, 28 Jan 2006 14:46:45 +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 12448-03; Sat, 28 Jan 2006 14:46:41 +0100 (CET) Original-Received: from ronja.vet.uu.nl (localhost [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id 6FBC9127F5; Sat, 28 Jan 2006 14:46:41 +0100 (CET) Original-Received: from localhost (localhost [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id CD4B8127F5 for ; Sat, 28 Jan 2006 14:46:40 +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 12558-01 for ; Sat, 28 Jan 2006 14:46:39 +0100 (CET) Original-Received: from smtp.seznam.cz (smtp.seznam.cz [212.80.76.43]) by ronja.ntg.nl (Postfix) with SMTP id BFC85127E9 for ; Sat, 28 Jan 2006 14:46:39 +0100 (CET) Original-Received: (qmail 9710 invoked from network); 28 Jan 2006 13:46:39 -0000 Original-Received: from unknown (HELO ?127.0.0.1?) (vit.zyka@62.240.166.134) by cetus.go.seznam.cz with ESMTPA; 28 Jan 2006 13:46:39 -0000 User-Agent: Mozilla Thunderbird 1.0.6 (Windows/20050716) X-Accept-Language: en-us, en Original-To: mailing list for ConTeXt users In-Reply-To: <43DB5B1B.50902@elvenkind.com> X-Antivirus: avast! (VPS 0604-3, 26.01.2006), Outbound message X-Antivirus-Status: Clean 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:25648 Archived-At: Taco Hoekwater wrote: > Aditya Mahajan wrote: > >>>The definition from m-newmat is at least partly superceded by the >>>new core math definitions Hans added last week, so a new implementation >>>would be better. >> >>Can you suggest something? > > > Like this maybe? > > \def\substack#1% > {\begingroup > \let\\\cr > \startmathmatrix #1\stopmathmatrix > \endgroup} > > Probably needs a bit of tweaking to make it look better > (perhaps a [strut=no] parameter?). What about use math primitive \atop: \def\substack#1% {\begingroup \let\\\atop #1 \endgroup} Vit