On 04/15/2012 10:01 AM, Jan Heinen wrote:
Hello, someone here on a sunday?
I want to have a PDF-screen-version of my booklet: The book has 8 pages including the coverpages.
The result should look like this: (first and last page NOT doublesided)
1 first page of the pdf (coverpage) 2 3 second 4 5 third 6 7 fourth 8 fifth (coverpage)
With the following commands I get the wrong result:
\setuppapersize[A5][A4,landscape]% A5 wird auf A4 gedruckt \setuparranging[2SIDE]
1 2 first page of the pdf 3 4 second 5 6 third 7 8 fourth
Have a nice weekend Jannis
Willi is the resident imposition expert, but in his absence: I don't think this is a standard imposition scheme, hence ConTeXt doesn't have any predefined setup for it (I'm not quite sure I understand what it is you're trying to accomplish). So I think you will have to add the desired empty page manually. On a wild guess: if you want different versions for print and for screen, you can use modes (that's what I do for some of my stuff). in pseudo-code: \startmode[booklet] \setuppapersize[A5][A4,landscape] \setuparranging[2SIDE] \stopmode \starttext First page \startmode[booklet] \null \page \stopmode etc. \stoptext When you run with context --mode=booklet --arrange you'll get the desired booklet; otherwise you get a normal pdf. Thomas