From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.comp.tex.context/15965 Path: main.gmane.org!not-for-mail From: Hans Hagen Newsgroups: gmane.comp.tex.context Subject: Re: How to change the page size for single pages within a document Date: Fri, 06 Aug 2004 09:27:29 +0200 Sender: ntg-context-bounces@ntg.nl Message-ID: <411332E1.1090007@wxs.nl> References: <41133297.7040000@gmx.de> Reply-To: mailing list for ConTeXt users NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1091777265 2155 80.91.224.253 (6 Aug 2004 07:27:45 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Fri, 6 Aug 2004 07:27:45 +0000 (UTC) Original-X-From: ntg-context-bounces@ntg.nl Fri Aug 06 09:27:35 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 1Bsz8Z-0007PD-00 for ; Fri, 06 Aug 2004 09:27:35 +0200 Original-Received: from localhost (localhost.localdomain [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id 2F0A21277A; Fri, 6 Aug 2004 09:27:35 +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 09697-08; Fri, 6 Aug 2004 09:27:32 +0200 (CEST) Original-Received: from ronja.vet.uu.nl (localhost.localdomain [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id 8A35B12772; Fri, 6 Aug 2004 09:27:32 +0200 (CEST) Original-Received: from localhost (localhost.localdomain [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id 7836412772 for ; Fri, 6 Aug 2004 09:27: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 09701-06 for ; Fri, 6 Aug 2004 09:27:31 +0200 (CEST) Original-Received: from mailrelay02.solcon.nl (unknown [212.45.32.200]) by ronja.ntg.nl (Postfix) with ESMTP id F3FF5126F8 for ; Fri, 6 Aug 2004 09:27:30 +0200 (CEST) Original-Received: from server-1.pragma-net.nl (dsl-212-84-128-085.solcon.nl [212.84.128.85]) by mailrelay02.solcon.nl (8.12.11/SQL-8.12.11-5/8.12.11) with ESMTP id i767RTnA017124 for ; Fri, 6 Aug 2004 09:27:29 +0200 Original-Received: by server-1.pragma-net.nl (Postfix, from userid 65534) id B139E1A7A2; Fri, 6 Aug 2004 09:27:29 +0200 (CEST) Original-Received: from [10.100.1.191] (unknown [10.100.1.191]) by server-1.pragma-net.nl (Postfix) with ESMTP id 6A8F817BA1 for ; Fri, 6 Aug 2004 07:27:28 +0000 (UTC) User-Agent: Mozilla Thunderbird 0.6 (Windows/20040502) X-Accept-Language: en-us, en Original-To: mailing list for ConTeXt users In-Reply-To: <41133297.7040000@gmx.de> X-Virus-Scanned: clamd / ClamAV version 0.75, clamav-milter version 0.75 on mailrelay02 X-Virus-Status: Clean 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:15965 X-Report-Spam: http://spam.gmane.org/gmane.comp.tex.context:15965 Stefan Wachter wrote: > Hi all, > > is there a possibility to change the page size of single pages in a > document. sure, just try: \starttext \setuppapersize[A4][A4] \input tufte \page \setuppapersize[A3][A3] \input tufte \page \setuppapersize[A4][A4] \input tufte \page \stoptext You can also do things like: \definelayout [one] [....] \setuplayout[one] and have multiple layouts (instead of one, you can use 'left' and 'right' for left right page layouts or use a number indicating the page for which the layout applies) my local version also has layout dependent page sizes > Reason: I have a document that contains some large tables that do not > fit on > normal pages. Therefore I would like to output such tables on a page > of their > own having the neccessary size. (Of course the documents are not ment > to be > printed. They are to be viewed with Acrobat.) Hans