From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.comp.tex.context/31254 Path: news.gmane.org!not-for-mail From: Aditya Mahajan Newsgroups: gmane.comp.tex.context Subject: Re: Combinations Date: Sun, 8 Oct 2006 10:26:20 -0400 (EDT) Message-ID: References: <3e73596b0610072019w3f07dc2pc5b2dab757f2dce4@mail.gmail.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 1160317804 13021 80.91.229.2 (8 Oct 2006 14:30:04 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sun, 8 Oct 2006 14:30:04 +0000 (UTC) Original-X-From: ntg-context-bounces@ntg.nl Sun Oct 08 16:30:01 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 1GWZc5-0006PO-Ux for gctc-ntg-context-518@m.gmane.org; Sun, 08 Oct 2006 16:26:47 +0200 Original-Received: from localhost (localhost [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id 23C641FCAF; Sun, 8 Oct 2006 16:26:44 +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 02315-03; Sun, 8 Oct 2006 16:26:36 +0200 (CEST) Original-Received: from ronja.vet.uu.nl (localhost [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id E275A1FE05; Sun, 8 Oct 2006 16:26:35 +0200 (CEST) Original-Received: from localhost (localhost [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id 9E70F1FE05 for ; Sun, 8 Oct 2006 16:26:31 +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 02314-02 for ; Sun, 8 Oct 2006 16:26:24 +0200 (CEST) Original-Received: from tombraider.mr.itd.umich.edu (smtp.mail.umich.edu [141.211.93.161]) by ronja.ntg.nl (Postfix) with SMTP id 9B8F11FCCA for ; Sun, 8 Oct 2006 16:26:22 +0200 (CEST) Original-Received: FROM aditya.annarb01.mi.comcast.net (c-68-40-50-205.hsd1.mi.comcast.net [68.40.50.205]) BY tombraider.mr.itd.umich.edu ID 45290A8C.9782.19673 ; 8 Oct 2006 10:26:20 -0400 Original-To: mailing list for ConTeXt users In-Reply-To: <3e73596b0610072019w3f07dc2pc5b2dab757f2dce4@mail.gmail.com> 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:31254 Archived-At: On Sat, 7 Oct 2006, Pepe Barbe wrote: > Hello everyone, > > I have 14 graphs that I want to arrange in a single page. I've found > the best wat to do that is with a 3 by 5 combination. Yet, it would > look better if I had a 3 by 4 combination and a 2 by 1 centered > underneath the preveious. Is there some simple way to do that? Not that I know of. It may be possible to expand \start stop combination to work with \startcombination[3*4,2*1] but then you will have to count on your own. Perhaps, you can define (untested) \def\resetcombination{\stopcomination\startcombination} and then \startcombination[3*4] .... .... \resetcombination[2*1] .... .... \stopcombination > Also, a while ago I asked about the font size of the captions in the > combinations, which wasn't being respected in Math mode. I've tried in > the latest beta and the problem persists. Any ideas? The problem, if any, is with \tfx. This demonstrates it \tfx Test $Test$ Perhaps a cleaner way to do this is \switchtobodyfont[small] Test $Test$ I do not know why is this not equivalent to \small Test $Test$ Aditya