From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.comp.tex.context/25316 Path: news.gmane.org!not-for-mail From: Hans Hagen Newsgroups: gmane.comp.tex.context Subject: Re: Special Title Date: Wed, 18 Jan 2006 00:11:58 +0100 Message-ID: <43CD79BE.1040501@wxs.nl> References: <43CD4E2A.9010207@wapf.ch> Reply-To: mailing list for ConTeXt users NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1137539534 30960 80.91.229.2 (17 Jan 2006 23:12:14 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Tue, 17 Jan 2006 23:12:14 +0000 (UTC) Original-X-From: ntg-context-bounces@ntg.nl Wed Jan 18 00:12:12 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 1Eyzzg-0002wS-L6 for gctc-ntg-context-518@m.gmane.org; Wed, 18 Jan 2006 00:12:04 +0100 Original-Received: from localhost (localhost [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id 3142D1280E; Wed, 18 Jan 2006 00:12:04 +0100 (CET) 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 27662-10-3; Wed, 18 Jan 2006 00:12:01 +0100 (CET) Original-Received: from ronja.vet.uu.nl (localhost [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id 77F62127A2; Wed, 18 Jan 2006 00:12:01 +0100 (CET) Original-Received: from localhost (localhost [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id B09AA127A2 for ; Wed, 18 Jan 2006 00:12:00 +0100 (CET) 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 27662-10-2 for ; Wed, 18 Jan 2006 00:11:59 +0100 (CET) Original-Received: from mail.pragma-ade.net (dsl-212-84-128-085.solcon.nl [212.84.128.85]) by ronja.ntg.nl (Postfix) with SMTP id 5179B12793 for ; Wed, 18 Jan 2006 00:11:59 +0100 (CET) Original-Received: from [10.100.1.102] (unverified [10.100.1.102]) by controller-1 (SurgeMail 3.5b3) with ESMTP id 1208 for ; Tue, 17 Jan 2006 18:23:01 +0300 User-Agent: Mozilla Thunderbird 1.0.7 (Windows/20050923) X-Accept-Language: en-us, en Original-To: mailing list for ConTeXt users In-Reply-To: <43CD4E2A.9010207@wapf.ch> X-Server: High Performance Mail Server - http://surgemail.com r=-274017400 X-Authenticated-User: hagen@controller-1 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-Virus-Scanned: amavisd-new at ntg.nl Xref: news.gmane.org gmane.comp.tex.context:25316 Archived-At: Andreas Wapf wrote: > Hello > > I'm searching a way to place a title on top of a new page with \title > and sometimes an additonal text (name of the author or something else) > directly under the title. But the main text should always start some > distance from the header and not from the title. Is this possible? > > As an example: > > with a little text: > header > ---------- > title 1 > author x y > > main text 4 new lines from the header > > > without the short text: > > header > ---------- > title 1 > > > main text 4 new lines from the header \vbox to 4\lineheight \bgroup title 1 author x y \vfill \egroup will do that; ok, you may add some strutdepth or so: \vbox to 4\lineheight \bgroup title 1 author x y \vfill \egroup \vskip-\prevdepth \vskip-\lineheight \strut \par you can also use \framed[lines=4,align=normal]{...} Hans