From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.comp.tex.context/15053 Path: main.gmane.org!not-for-mail From: Hans Hagen Newsgroups: gmane.comp.tex.context Subject: Re: Superimposing two flowcharts Date: Mon, 26 Apr 2004 00:11:54 +0200 Sender: ntg-context-admin@ntg.nl Message-ID: <6.0.1.1.2.20040426000651.02849ec0@localhost> References: <5.2.0.9.1.20040422091357.00ac3e98@imap.eco.rug.nl> <5.2.0.9.1.20040422091357.00ac3e98@imap.eco.rug.nl> <5.2.0.9.1.20040423094844.00a956f8@imap.eco.rug.nl> Reply-To: ntg-context@ntg.nl NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed X-Trace: sea.gmane.org 1082974874 427 80.91.224.253 (26 Apr 2004 10:21:14 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 26 Apr 2004 10:21:14 +0000 (UTC) Original-X-From: ntg-context-admin@ntg.nl Mon Apr 26 12:21:02 2004 Return-path: Original-Received: from ref.vet.uu.nl ([131.211.172.13] helo=ref.ntg.nl) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1BI3EU-0007oj-00 for ; Mon, 26 Apr 2004 12:21:02 +0200 Original-Received: from ref.ntg.nl (localhost.localdomain [127.0.0.1]) by ref.ntg.nl (Postfix) with ESMTP id 14DAE10B4F; Mon, 26 Apr 2004 12:17:11 +0200 (MEST) Original-Received: from mail.solcon.nl (mail.solcon.nl [212.45.33.11]) by ref.ntg.nl (Postfix) with ESMTP id D2C0B10B2E for ; Mon, 26 Apr 2004 12:15:38 +0200 (MEST) Original-Received: from server-1.pragma-net.nl (dsl-212-84-128-085.solcon.nl [212.84.128.85]) by mail.solcon.nl (8.12.10/SQL-8.12.10-1/8.12.5) with ESMTP id i3QAJLLa032490 for ; Mon, 26 Apr 2004 12:19:21 +0200 Original-Received: by server-1.pragma-net.nl (Postfix, from userid 65534) id C7EB11B327; Mon, 26 Apr 2004 12:19:23 +0200 (CEST) Original-Received: from laptop-3.wxs.nl (unknown [10.100.1.191]) by server-1.pragma-net.nl (Postfix) with ESMTP id A46B01B32B for ; Mon, 26 Apr 2004 10:19:20 +0000 (UTC) X-Sender: hagen-mail@server-1 X-Mailer: QUALCOMM Windows Eudora Version 6.0.1.1 Original-To: ntg-context@ntg.nl In-Reply-To: <5.2.0.9.1.20040423094844.00a956f8@imap.eco.rug.nl> Original-References: <5.2.0.9.1.20040422091357.00ac3e98@imap.eco.rug.nl> <5.2.0.9.1.20040422091357.00ac3e98@imap.eco.rug.nl> <5.2.0.9.1.20040423094844.00a956f8@imap.eco.rug.nl> X-AntiVirus: checked by Vexira Milter 1.0.6; VAE 6.25.0.2; VDF 6.25.0.30 Errors-To: ntg-context-admin@ntg.nl X-BeenThere: ntg-context@ntg.nl X-Mailman-Version: 2.0.13 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: mailing list for ConTeXt users List-Unsubscribe: , List-Archive: Xref: main.gmane.org gmane.comp.tex.context:15053 X-Report-Spam: http://spam.gmane.org/gmane.comp.tex.context:15053 Hi Sytse, >The remaining problem is that the bigger shape is scaled down to the size >of the smaller shapes. I see, you need a shape that spans n cells. I must figure out a way to extend the flow charter with that (i.e. a kind of virtual shape, where the lines are still drawn from separate nodes, something: \startFLOWspan \name{Obs} \location{1,1} \shape{action} \text{{\bf observations}} \stopFLOWspan so let's put that on the todo list ... (remind me in a while, i need to print the modules and look into it) For the moment, you can do something: \startFLOWchart[Observations] % The bigger shape \setupFLOWcharts [nx=3, ny=2, dx=40pt, dy=25pt, breedte=260pt, hoogte=130pt] \startFLOWcell \name{Obs} \location{1,1} \shape{action} \text{{\bf observations}} \stopFLOWcell \stopFLOWchart \startFLOWchart[Parameters] % The smaller shapes \setupFLOWcharts [nx=5, ny=2, dx=40pt, dy=25pt, breedte=110pt, hoogte=130pt] ... you need to fix the widths and distances (some kind of larger grid) but since calculations is part of your profession i leave that to you -) (you can use \dimexpr for that) Hans