ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* Cranky booklet layout.
@ 2006-04-26  1:02 John R. Culleton
  2006-04-26  8:42 ` Willi Egger
  0 siblings, 1 reply; 5+ messages in thread
From: John R. Culleton @ 2006-04-26  1:02 UTC (permalink / raw)


First I built a letter-on-tabloid booklet like this:

\definepapersize[tabloid][width=11in,height=17in]
\setuppapersize[letter][tabloid]
\setuparranging[2UP,rotated,doublesided]
\setuplayout[width=7in,location=doublesided,backspace=0.73in,
topspace=.0in,height=10.3in]

This worked pretty well. For the next iteration I wanted to
reduce the size by one half, in other words a half letter sheet
on a letter sheet. I came up with this:

\definepapersize[halff][width 5.5in,height=8.5in]
\definepapersize[ful][width 8.5in,height=11in]
\setuppapersize[halff][ful]
\setuparranging[2UP,rotated,doublesided]

Now no amount of fiddling with \setuplayout parameters seems to
place the logical pages correctly on the paper. If I use no such parameters
whatever the entire physical page image seem to slide toward the
bottom of the piece of paper. As a result the bottom logical page
slides halfway off the page. 

Can anyone spot an obvious goof? 

John Culleton


-- 
John Culleton
Books with answers to marketing and publishing questions:
http://wexfordpress.com/tex/shortlist.pdf

Book coaches, consultants and packagers:
http://wexfordpress.com/tex/packagers.pdf

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Cranky booklet layout.
  2006-04-26  1:02 Cranky booklet layout John R. Culleton
@ 2006-04-26  8:42 ` Willi Egger
  2006-04-26 11:21   ` John R. Culleton
  0 siblings, 1 reply; 5+ messages in thread
From: Willi Egger @ 2006-04-26  8:42 UTC (permalink / raw)


Hi John,

Coud it be that you simply forgot the "=" after width?

Willi

John R. Culleton wrote:

>First I built a letter-on-tabloid booklet like this:
>
>\definepapersize[tabloid][width=11in,height=17in]
>\setuppapersize[letter][tabloid]
>\setuparranging[2UP,rotated,doublesided]
>\setuplayout[width=7in,location=doublesided,backspace=0.73in,
>topspace=.0in,height=10.3in]
>
>This worked pretty well. For the next iteration I wanted to
>reduce the size by one half, in other words a half letter sheet
>on a letter sheet. I came up with this:
>
>\definepapersize[halff][width 5.5in,height=8.5in]
>\definepapersize[ful][width 8.5in,height=11in]
>\setuppapersize[halff][ful]
>\setuparranging[2UP,rotated,doublesided]
>
>Now no amount of fiddling with \setuplayout parameters seems to
>place the logical pages correctly on the paper. If I use no such parameters
>whatever the entire physical page image seem to slide toward the
>bottom of the piece of paper. As a result the bottom logical page
>slides halfway off the page. 
>
>Can anyone spot an obvious goof? 
>
>John Culleton
>
>
>  
>

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Cranky booklet layout.
  2006-04-26  8:42 ` Willi Egger
@ 2006-04-26 11:21   ` John R. Culleton
  2006-04-26 20:53     ` John R. Culleton
  0 siblings, 1 reply; 5+ messages in thread
From: John R. Culleton @ 2006-04-26 11:21 UTC (permalink / raw)


On Wednesday 26 April 2006 04:42, Willi Egger wrote:
> Hi John,
>
> Coud it be that you simply forgot the "=" after width?
>
> Willi

Of course. It was staring at me and I didn't see it. I missed two
of them in fact. 

Thanks Willi.
-- 
John Culleton

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Cranky booklet layout.
  2006-04-26 11:21   ` John R. Culleton
@ 2006-04-26 20:53     ` John R. Culleton
  2006-04-26 22:59       ` Hans Hagen
  0 siblings, 1 reply; 5+ messages in thread
From: John R. Culleton @ 2006-04-26 20:53 UTC (permalink / raw)


On Wednesday 26 April 2006 07:21, John R. Culleton wrote:
> On Wednesday 26 April 2006 04:42, Willi Egger wrote:
> > Hi John,
> >
> > Coud it be that you simply forgot the "=" after width?
> >
> > Willi
>
> Of course. It was staring at me and I didn't see it. I missed two
> of them in fact.
>
> Thanks Willi.

Ah I spoke too soon. The layout is OK but the TOC disapears when
I use the \setuparranging. It works otherwise. I get a message on
sysout:
              -------------------------------------      
                output file : apr06.tuo
                remark : no output file generated
             -------------------------------------  
The apr06.tui file has the TOC entries, e.g.,
-------------------------------------
c \listentry{section}{1}{}{2006 Events Calendar}{2::0:0:1:0:0:0:0::25}{25}
c \listentry{section}{2}{}{2007 Events Calendar}{2::0:0:2:0:0:0:0::25}{25}
c \listentry{section}{3}{}{2006 Officers, Directors and Board Members}
{2::0:0:3:0:0:0:0::25}{25}
c \listentry{section}{4}{}{Contact Information}{2::0:0:4:0:0:0:0::25}{25}
c \listentry{section}{5}{}{Board Meeting Minutes February 20, 2006}
{2::0:0:5:0:0:0:0::25}{25}
c \listentry{section}{6}{}{Brags}{2::0:0:6:0:0:0:0::25}{25}
--------------------------------------

The log file says in part:
---------------------------------------
./content.tex
system          : part,chapter,section not found/processed
-----------------------------------------

content.tex is a called subfile containing just:
-------------------------------------------
\startcolumns[n=2]
\placecontent[level=section, alternative=c]
\stopcolumns
-------------------------------------------

I use a mode to create the booklet. When I don't use the mode the
toc is fine. Here is the mode:
------------------------------
\startmode[hal]
\definepapersize[halff][width=5.5in,height=8.5in]
\definepapersize[ful][width=8.5in,height=11in]
\setuppapersize[halff][ful]
\setuparranging[2UP,rotated,doublesided]
\setuplayout[margin=0pt,width=fit]
\stopmode
-------------------------------------

The TOC is not absolutely critical to this particular job, but I
would like to know what is happpening (or not happening in this
case.)

John Culleton

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Cranky booklet layout.
  2006-04-26 20:53     ` John R. Culleton
@ 2006-04-26 22:59       ` Hans Hagen
  0 siblings, 0 replies; 5+ messages in thread
From: Hans Hagen @ 2006-04-26 22:59 UTC (permalink / raw)


John R. Culleton wrote:
> On Wednesday 26 April 2006 07:21, John R. Culleton wrote:
>   
>> On Wednesday 26 April 2006 04:42, Willi Egger wrote:
>>     
>>> Hi John,
>>>
>>> Coud it be that you simply forgot the "=" after width?
>>>
>>> Willi
>>>       
>> Of course. It was staring at me and I didn't see it. I missed two
>> of them in fact.
>>
>> Thanks Willi.
>>     
>
> Ah I spoke too soon. The layout is OK but the TOC disapears when
> I use the \setuparranging. It works otherwise. I get a message on
> sysout:
>               -------------------------------------      
>                 output file : apr06.tuo
>                 remark : no output file generated
>              -------------------------------------  
> The apr06.tui file has the TOC entries, e.g.,
> -------------------------------------
> c \listentry{section}{1}{}{2006 Events Calendar}{2::0:0:1:0:0:0:0::25}{25}
> c \listentry{section}{2}{}{2007 Events Calendar}{2::0:0:2:0:0:0:0::25}{25}
> c \listentry{section}{3}{}{2006 Officers, Directors and Board Members}
> {2::0:0:3:0:0:0:0::25}{25}
> c \listentry{section}{4}{}{Contact Information}{2::0:0:4:0:0:0:0::25}{25}
> c \listentry{section}{5}{}{Board Meeting Minutes February 20, 2006}
> {2::0:0:5:0:0:0:0::25}{25}
> c \listentry{section}{6}{}{Brags}{2::0:0:6:0:0:0:0::25}{25}
> --------------------------------------
>
> The log file says in part:
> ---------------------------------------
> ./content.tex
> system          : part,chapter,section not found/processed
> -----------------------------------------
>
> content.tex is a called subfile containing just:
> -------------------------------------------
> \startcolumns[n=2]
> \placecontent[level=section, alternative=c]
> \stopcolumns
> -------------------------------------------
>
> I use a mode to create the booklet. When I don't use the mode the
> toc is fine. Here is the mode:
> ------------------------------
> \startmode[hal]
> \definepapersize[halff][width=5.5in,height=8.5in]
> \definepapersize[ful][width=8.5in,height=11in]
> \setuppapersize[halff][ful]
> \setuparranging[2UP,rotated,doublesided]
> \setuplayout[margin=0pt,width=fit]
> \stopmode
> -------------------------------------
>
> The TOC is not absolutely critical to this particular job, but I
> would like to know what is happpening (or not happening in this
> case.)
>
>   
use

texexec --arrange

which will do a normal run followed by an arrange one

(alternatively, use --once when you arrange)

Hans

-- 

-----------------------------------------------------------------
                                          Hans Hagen | PRAGMA ADE
              Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
     tel: 038 477 53 69 | fax: 038 477 53 74 | www.pragma-ade.com
                                             | www.pragma-pod.nl
-----------------------------------------------------------------

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2006-04-26 22:59 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-04-26  1:02 Cranky booklet layout John R. Culleton
2006-04-26  8:42 ` Willi Egger
2006-04-26 11:21   ` John R. Culleton
2006-04-26 20:53     ` John R. Culleton
2006-04-26 22:59       ` Hans Hagen

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).