From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.comp.tex.context/16797 Path: main.gmane.org!not-for-mail From: David Arnold Newsgroups: gmane.comp.tex.context Subject: AMS-like matrices Date: Tue, 26 Oct 2004 21:18:53 -0700 Sender: ntg-context-bounces@ntg.nl Message-ID: <3.0.5.32.20041026211853.008c1c40@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 1098850969 14040 80.91.229.6 (27 Oct 2004 04:22:49 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Wed, 27 Oct 2004 04:22:49 +0000 (UTC) Original-X-From: ntg-context-bounces@ntg.nl Wed Oct 27 06:22:31 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 1CMfKR-00040g-00 for ; Wed, 27 Oct 2004 06:22:31 +0200 Original-Received: from localhost (localhost.localdomain [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id 4C6831278D; Wed, 27 Oct 2004 06:22:31 +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 25243-08-3; Wed, 27 Oct 2004 06:22:28 +0200 (CEST) Original-Received: from ronja.vet.uu.nl (localhost.localdomain [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id C6D251277E; Wed, 27 Oct 2004 06:22:28 +0200 (CEST) Original-Received: from localhost (localhost.localdomain [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id 3AE2F1277E for ; Wed, 27 Oct 2004 06:22:27 +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 25243-08-2 for ; Wed, 27 Oct 2004 06:22:26 +0200 (CEST) Original-Received: from smtp.inreach.com (unknown [209.142.2.34]) by ronja.ntg.nl (Postfix) with SMTP id 406821276D for ; Wed, 27 Oct 2004 06:22:26 +0200 (CEST) Original-Received: (qmail 27426 invoked from network); 27 Oct 2004 04:23:46 -0000 Original-Received: from unknown (HELO newmicronpc) (209.209.15.139) by smtp.inreach.com with SMTP; 27 Oct 2004 04:23:46 -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:16797 X-Report-Spam: http://spam.gmane.org/gmane.comp.tex.context:16797 All, Are there nath, newmat, amsl constructs that do the following: %matrix wrapped in parentheses () \begin{pmatrix} 1&2&3&4\\ 5&6&7&8 \end{pmatrix} %matrix wrapped in brackets [] \begin{bmatrix} 1&2&3&4\\ 5&6&7&8 \end{bmatrix} %matrix wrapped in curly braces {} \begin{Bmatrix} 1&2&3&4\\ 5&6&7&8 \end{Bmatrix} %matrix wrapped in absolute values || good for determinants \begin{vmatrix} 1&2&3&4\\ 5&6&7&8 \end{vmatrix} %matrix wrapped in || || good for magnitude of a vector \begin{Vmatrix} 1&2&3&4\\ 5&6&7&8 \end{Vmatrix}