From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.comp.tex.context/20621 Path: news.gmane.org!not-for-mail From: Otared Kavian Newsgroups: gmane.comp.tex.context Subject: Re: printing an envelope--solution. Date: Wed, 1 Jun 2005 23:08:01 +0200 Message-ID: <79451fd4deb7e33ebe97aba421921d40@gmail.com> References: <429DC2E9.2030202@seznam.cz> <200506011333.02209.john@wexfordpress.com> Reply-To: mailing list for ConTeXt users NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 (Apple Message framework v622) Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: quoted-printable X-Trace: sea.gmane.org 1117659989 9210 80.91.229.2 (1 Jun 2005 21:06:29 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Wed, 1 Jun 2005 21:06:29 +0000 (UTC) Original-X-From: ntg-context-bounces@ntg.nl Wed Jun 01 23:06:26 2005 Return-path: 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 1DdaOj-0000q2-4v for gctc-ntg-context-518@m.gmane.org; Wed, 01 Jun 2005 23:05:09 +0200 Original-Received: from localhost (localhost.localdomain [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id E081D127EE; Wed, 1 Jun 2005 23:08:07 +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 26848-04; Wed, 1 Jun 2005 23:08:04 +0200 (CEST) Original-Received: from ronja.vet.uu.nl (localhost.localdomain [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id A540D127E0; Wed, 1 Jun 2005 23:08:04 +0200 (CEST) Original-Received: from localhost (localhost.localdomain [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id 3E996127E0 for ; Wed, 1 Jun 2005 23:08:03 +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 26711-06-4 for ; Wed, 1 Jun 2005 23:08:03 +0200 (CEST) Original-Received: from smtp3.wanadoo.fr (smtp3.wanadoo.fr [193.252.22.28]) by ronja.ntg.nl (Postfix) with ESMTP id 25581127B0 for ; Wed, 1 Jun 2005 23:08:03 +0200 (CEST) Original-Received: from me-wanadoo.net (localhost [127.0.0.1]) by mwinf0312.wanadoo.fr (SMTP Server) with ESMTP id E49D21C00134 for ; Wed, 1 Jun 2005 23:08:02 +0200 (CEST) Original-Received: from [10.0.1.121] (AMontsouris-151-1-11-162.w82-123.abo.wanadoo.fr [82.123.136.162]) by mwinf0312.wanadoo.fr (SMTP Server) with ESMTP id A3FD41C0012F for ; Wed, 1 Jun 2005 23:08:02 +0200 (CEST) X-ME-UUID: 20050601210802671.A3FD41C0012F@mwinf0312.wanadoo.fr In-Reply-To: <200506011333.02209.john@wexfordpress.com> Original-To: mailing list for ConTeXt users X-Mailer: Apple Mail (2.622) X-Virus-Scanned: 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: , Original-Sender: ntg-context-bounces@ntg.nl Errors-To: ntg-context-bounces@ntg.nl X-Spam-Checker-Version: SpamAssassin 3.0.3 (2005-04-27) on smtp.ntg.nl X-Virus-Scanned: amavisd-new at ntg.nl Xref: news.gmane.org gmane.comp.tex.context:20621 X-Report-Spam: http://spam.gmane.org/gmane.comp.tex.context:20621 On 1 juin 2005, at 15:33, John R. Culleton wrote: > On Wednesday 01 June 2005 02:15 pm, Vit Zyka wrote: >> \definepapersize[env][width=3D4.25in,height=3D9.5in] >> \papersize[env][env] >> >> \setuplayout >> =A0 =A0[topspace=3D1in,bottomspace=3D1in,backspace=3D1.5in,cutspace=3D.= 5in, >> =A0 =A0 header=3D0pt,footer=3D0pt,margin=3D0pt, >> =A0 =A0 width=3Dmiddle,height=3Dmiddle] >> >> \starttext >> \rotated > !it blew up here. did not recognize \rotated > Hi John, That was the same for me: \rotated is not defined. However looking into my ConTeXt archives I found an example about=20 rotations, and after a new definition of your paper size discovered=20 that the following works: I hope it is what you are looking for... Best regards: OK %%% envelope-2.tex \definepapersize[env][width=3D9.5in,height=3D4.25in] \setuppapersize [env,rotated] % this rotates the page [env,landscape] % onto a landscaped size \setuplayout[location=3Dleft,width=3Dmiddle,height=3Dmiddle] \showframe \starttext \startstandardmakeup John Culleton\crlf 2401 Haight Avenue\crlf Eldersburg, MD 21784 \blank \hskip 3in \vbox{ Independent Contract Services\crlf Landmark Community Newspapers\crlf Carroll County Times\crlf P.O. Box 346\crlf Westminster MD 21158 } \stopstandardmakeup \stoptext