ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* arranging pages
@ 2015-05-24  9:24 Meer, H. van der
  2015-05-24 10:07 ` Otared Kavian
  2015-05-24 10:15 ` Otared Kavian
  0 siblings, 2 replies; 16+ messages in thread
From: Meer, H. van der @ 2015-05-24  9:24 UTC (permalink / raw)
  To: NTG ConTeXt


[-- Attachment #1.1: Type: text/plain, Size: 860 bytes --]

Trying to put 2 pages in A5 format besides one another on an A4 page like this:

----------------------
|         |          |
|         |          |
|         |          |
|    1    |      2   |
|         |          |
|         |          |
----------------------

but using:

\setuppapersize[A5][A4,landscape]
\setuparranging[2UP]

I get this instead:

----------------------  ----------------------
|         |          |  |         |          |
|         |          |  |         |          |
|         |          |  |         |          |
|         |     1    |  |    2    |          |
|         |          |  |         |          |
|         |          |  |         |          |
|         |          |  |         |          |
----------------------  ----------------------

What I am doing wrong?

Hans van der Meer





[-- Attachment #1.2: Type: text/html, Size: 4801 bytes --]

[-- Attachment #2: Type: text/plain, Size: 485 bytes --]

___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________

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

* Re: arranging pages
  2015-05-24  9:24 arranging pages Meer, H. van der
@ 2015-05-24 10:07 ` Otared Kavian
  2015-05-24 10:22   ` dr. Hans van der Meer
  2015-05-24 10:15 ` Otared Kavian
  1 sibling, 1 reply; 16+ messages in thread
From: Otared Kavian @ 2015-05-24 10:07 UTC (permalink / raw)
  To: mailing list for ConTeXt users


[-- Attachment #1.1: Type: text/plain, Size: 1716 bytes --]

Hi,

Maybe you need to say also:

	\setuppagenumbering[alternative={singlesided,doublesided}]

or just
	\setuppagenumbering[alternative={singlesided}]

Best regards: OK

> On 24 May 2015, at 11:24, Meer, H. van der <H.vanderMeer@uva.nl> wrote:
> 
> Trying to put 2 pages in A5 format besides one another on an A4 page like this:
> 
> ----------------------
> |         |          |
> |         |          |
> |         |          |
> |    1    |      2   |
> |         |          |
> |         |          |
> ----------------------
> 
> but using:
> 
> \setuppapersize[A5][A4,landscape]
> \setuparranging[2UP]
> 
> I get this instead:
> 
> ----------------------  ----------------------
> |         |          |  |         |          |  
> |         |          |  |         |          |  
> |         |          |  |         |          |  
> |         |     1    |  |    2    |          |  
> |         |          |  |         |          |  
> |         |          |  |         |          |  
> |         |          |  |         |          |  
> ----------------------  ----------------------
> 
> What I am doing wrong?
> 
> Hans van der Meer
> 
> 
> 
> 
> ___________________________________________________________________________________
> If your question is of interest to others as well, please add an entry to the Wiki!
> 
> maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
> webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
> archive  : http://foundry.supelec.fr/projects/contextrev/
> wiki     : http://contextgarden.net
> ___________________________________________________________________________________


[-- Attachment #1.2: Type: text/html, Size: 6682 bytes --]

[-- Attachment #2: Type: text/plain, Size: 485 bytes --]

___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________

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

* Re: arranging pages
  2015-05-24  9:24 arranging pages Meer, H. van der
  2015-05-24 10:07 ` Otared Kavian
@ 2015-05-24 10:15 ` Otared Kavian
  2015-05-24 10:28   ` Meer, H. van der
  1 sibling, 1 reply; 16+ messages in thread
From: Otared Kavian @ 2015-05-24 10:15 UTC (permalink / raw)
  To: mailing list for ConTeXt users


[-- Attachment #1.1: Type: text/plain, Size: 2015 bytes --]

Hi again,

Sorry I didn’t notice that you used

	\setuparranging[2UP] 

Actually what you want to do may be:

%%%% begin arranging-up-or-side.tex
\setuppapersize[A5][A4,landscape]
\setuplayout[location=middle]
\setuparranging[2SIDE]
%\setuparranging[2UP]  <—— Compare with the above
\setuppagenumbering[alternative={singlesided,doublesided}]

\starttext
\dorecurse{20}{\input knuth\par}
\stoptext
%%%% begin arranging-up-or-side.tex

Best regards: OK

> On 24 May 2015, at 11:24, Meer, H. van der <H.vanderMeer@uva.nl> wrote:
> 
> Trying to put 2 pages in A5 format besides one another on an A4 page like this:
> 
> ----------------------
> |         |          |
> |         |          |
> |         |          |
> |    1    |      2   |
> |         |          |
> |         |          |
> ----------------------
> 
> but using:
> 
> \setuppapersize[A5][A4,landscape]
> \setuparranging[2UP]
> 
> I get this instead:
> 
> ----------------------  ----------------------
> |         |          |  |         |          |  
> |         |          |  |         |          |  
> |         |          |  |         |          |  
> |         |     1    |  |    2    |          |  
> |         |          |  |         |          |  
> |         |          |  |         |          |  
> |         |          |  |         |          |  
> ----------------------  ----------------------
> 
> What I am doing wrong?
> 
> Hans van der Meer
> 
> 
> 
> 
> ___________________________________________________________________________________
> If your question is of interest to others as well, please add an entry to the Wiki!
> 
> maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
> webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
> archive  : http://foundry.supelec.fr/projects/contextrev/
> wiki     : http://contextgarden.net
> ___________________________________________________________________________________


[-- Attachment #1.2: Type: text/html, Size: 7236 bytes --]

[-- Attachment #2: Type: text/plain, Size: 485 bytes --]

___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________

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

* Re: arranging pages
  2015-05-24 10:07 ` Otared Kavian
@ 2015-05-24 10:22   ` dr. Hans van der Meer
  0 siblings, 0 replies; 16+ messages in thread
From: dr. Hans van der Meer @ 2015-05-24 10:22 UTC (permalink / raw)
  To: NTG ConTeXt


[-- Attachment #1.1: Type: text/plain, Size: 2717 bytes --]

Neither of these suggestions makes any difference. Not the solution therefore.


Hans van der Meer




> On 24 May 2015, at 12:07, Otared Kavian <otared@gmail.com> wrote:
> 
> Hi,
> 
> Maybe you need to say also:
> 
> 	\setuppagenumbering[alternative={singlesided,doublesided}]
> 
> or just
> 	\setuppagenumbering[alternative={singlesided}]
> 
> Best regards: OK
> 
>> On 24 May 2015, at 11:24, Meer, H. van der <H.vanderMeer@uva.nl <mailto:H.vanderMeer@uva.nl>> wrote:
>> 
>> Trying to put 2 pages in A5 format besides one another on an A4 page like this:
>> 
>> ----------------------
>> |         |          |
>> |         |          |
>> |         |          |
>> |    1    |      2   |
>> |         |          |
>> |         |          |
>> ----------------------
>> 
>> but using:
>> 
>> \setuppapersize[A5][A4,landscape]
>> \setuparranging[2UP]
>> 
>> I get this instead:
>> 
>> ----------------------  ----------------------
>> |         |          |  |         |          |  
>> |         |          |  |         |          |  
>> |         |          |  |         |          |  
>> |         |     1    |  |    2    |          |  
>> |         |          |  |         |          |  
>> |         |          |  |         |          |  
>> |         |          |  |         |          |  
>> ----------------------  ----------------------
>> 
>> What I am doing wrong?
>> 
>> Hans van der Meer
>> 
>> 
>> 
>> 
>> ___________________________________________________________________________________
>> If your question is of interest to others as well, please add an entry to the Wiki!
>> 
>> maillist : ntg-context@ntg.nl <mailto:ntg-context@ntg.nl> / http://www.ntg.nl/mailman/listinfo/ntg-context <http://www.ntg.nl/mailman/listinfo/ntg-context>
>> webpage  : http://www.pragma-ade.nl <http://www.pragma-ade.nl/> / http://tex.aanhet.net <http://tex.aanhet.net/>
>> archive  : http://foundry.supelec.fr/projects/contextrev/ <http://foundry.supelec.fr/projects/contextrev/>
>> wiki     : http://contextgarden.net <http://contextgarden.net/>
>> ___________________________________________________________________________________
> 
> ___________________________________________________________________________________
> If your question is of interest to others as well, please add an entry to the Wiki!
> 
> maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
> webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
> archive  : http://foundry.supelec.fr/projects/contextrev/
> wiki     : http://contextgarden.net
> ___________________________________________________________________________________


[-- Attachment #1.2: Type: text/html, Size: 8452 bytes --]

[-- Attachment #2: Type: text/plain, Size: 485 bytes --]

___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________

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

* Re: arranging pages
  2015-05-24 10:15 ` Otared Kavian
@ 2015-05-24 10:28   ` Meer, H. van der
  0 siblings, 0 replies; 16+ messages in thread
From: Meer, H. van der @ 2015-05-24 10:28 UTC (permalink / raw)
  To: NTG ConTeXt


[-- Attachment #1.1: Type: text/plain, Size: 2762 bytes --]

That is it! The difference between 2UP and 2SIDE had escaped me. Thanks.

Hans van der Meer




On 24 May 2015, at 12:15, Otared Kavian <otared@gmail.com<mailto:otared@gmail.com>> wrote:

Hi again,

Sorry I didn’t notice that you used

\setuparranging[2UP]

Actually what you want to do may be:

%%%% begin arranging-up-or-side.tex
\setuppapersize[A5][A4,landscape]
\setuplayout[location=middle]
\setuparranging[2SIDE]
%\setuparranging[2UP]  <—— Compare with the above
\setuppagenumbering[alternative={singlesided,doublesided}]

\starttext
\dorecurse{20}{\input knuth\par}
\stoptext
%%%% begin arranging-up-or-side.tex

Best regards: OK

On 24 May 2015, at 11:24, Meer, H. van der <H.vanderMeer@uva.nl<mailto:H.vanderMeer@uva.nl>> wrote:

Trying to put 2 pages in A5 format besides one another on an A4 page like this:

----------------------
|         |          |
|         |          |
|         |          |
|    1    |      2   |
|         |          |
|         |          |
----------------------

but using:

\setuppapersize[A5][A4,landscape]
\setuparranging[2UP]

I get this instead:

----------------------  ----------------------
|         |          |  |         |          |
|         |          |  |         |          |
|         |          |  |         |          |
|         |     1    |  |    2    |          |
|         |          |  |         |          |
|         |          |  |         |          |
|         |          |  |         |          |
----------------------  ----------------------

What I am doing wrong?

Hans van der Meer




___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl<mailto:ntg-context@ntg.nl> / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl<http://www.pragma-ade.nl/> / http://tex.aanhet.net<http://tex.aanhet.net/>
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net<http://contextgarden.net/>
___________________________________________________________________________________

___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl<mailto:ntg-context@ntg.nl> / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________


[-- Attachment #1.2: Type: text/html, Size: 8897 bytes --]

[-- Attachment #2: Type: text/plain, Size: 485 bytes --]

___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________

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

* Re: Arranging pages
  2006-04-25  9:05 Arranging pages Renaud AUBIN
@ 2006-04-25  9:45 ` Willi Egger
  0 siblings, 0 replies; 16+ messages in thread
From: Willi Egger @ 2006-04-25  9:45 UTC (permalink / raw)


What you can do is e.g. the following:

\definepapersize[Card][width=14.85cm,height=21cm]
\setuppapersize[Card][A4,landscape]

\setuplayout
    [topspace=1cm,
    backspace=1cm,
    margin=0pt,
    header=0pt,
    footer=0pt,
    height=19cm,
    width=12.5cm]

\setuppaper[nx=2,ny=1]
\setuparranging[XY]

\starttext
    Contents of A
    Contents of B
\stoptext

Kind regards Willi

Renaud AUBIN wrote:

> Hi all,
>
> I'm working on my wedding's "Menu" with ConTeXt (I have started 
> ConTeXt and metafun when making my wedding invitations ;) and already 
> succeed to produce nice booklets)
> Considering two pages A and B, I would obtain:
> AB on the same page
> with setuparranging I obtain
> 0A
> B0
> with 0 an empty page
> I have "succeeded" (is it really a success !!!) to obtain
> 00
> AB
> using \page[even] and \page[yes]
> (I have to precise here that we would not to print a "booklet" for 
> practical reasons)
> It's ok if I use --pages=2
>
> but
>
> I feel frustating because I feel that it could be really simple to do 
> what I wanted, i.e.:
> AB !!!!!!!
>
> I know that it could be done with overlay but I assume that there is a 
> much simplier solution to this simple problem...
>
> Cheers
>
> Renaud
>
>------------------------------------------------------------------------
>
>_______________________________________________
>ntg-context mailing list
>ntg-context@ntg.nl
>http://www.ntg.nl/mailman/listinfo/ntg-context
>  
>

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

* Arranging pages
@ 2006-04-25  9:05 Renaud AUBIN
  2006-04-25  9:45 ` Willi Egger
  0 siblings, 1 reply; 16+ messages in thread
From: Renaud AUBIN @ 2006-04-25  9:05 UTC (permalink / raw)



[-- Attachment #1.1: Type: text/plain, Size: 755 bytes --]

Hi all,

I'm working on my wedding's "Menu" with ConTeXt (I have started ConTeXt
and metafun when making my wedding invitations ;) and already succeed to
produce nice booklets)
Considering two pages A and B, I would obtain:
AB on the same page
with setuparranging I obtain
0A
B0
with 0 an empty page
I have "succeeded" (is it really a success !!!) to obtain
00
AB
using \page[even] and \page[yes]
(I have to precise here that we would not to print a "booklet" for
practical reasons)
It's ok if I use --pages=2

but

I feel frustating because I feel that it could be really simple to do
what I wanted, i.e.:
AB !!!!!!!

I know that it could be done with overlay but I assume that there is a
much simplier solution to this simple problem...

Cheers

Renaud

[-- Attachment #1.2: Type: text/html, Size: 1148 bytes --]

[-- Attachment #2: Type: text/plain, Size: 139 bytes --]

_______________________________________________
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context

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

* Re: arranging pages
  2002-08-01 12:40     ` Johannes Hüsing
@ 2002-08-12 18:13       ` Henning Hraban Ramm
  0 siblings, 0 replies; 16+ messages in thread
From: Henning Hraban Ramm @ 2002-08-12 18:13 UTC (permalink / raw)


Am Donnerstag, 1. August 2002 14:40 schrieb Johannes Hüsing:
> have you solved the problem yet? I have a similar problem in that I want
> four A4 landscape pages in a two by two arrangement on an A2 sheet. No
> twisting, no turning.

Not really.
I'm rather satisfied with two consecutive "filius" pages on an A4 landscape 
(instead of 3); some pages more don't matter with my address book. (And I 
learned to tell texexec "--arrange" to get better results.)

But I found no way for three pages side by side nor simple double pages for 
the book (starting with a single right page).

Grüßlis vom Hraban!
-- 
http://www.angerweit.de
http://www.fiee.net
http://www.ramm.ch
---


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

* Re: arranging pages
  2002-07-11 18:51   ` Henning Hraban Ramm
@ 2002-08-01 12:40     ` Johannes Hüsing
  2002-08-12 18:13       ` Henning Hraban Ramm
  0 siblings, 1 reply; 16+ messages in thread
From: Johannes Hüsing @ 2002-08-01 12:40 UTC (permalink / raw)


On Thu, Jul 11, 2002 at 08:51:42PM +0200, Henning Hraban Ramm wrote:
> Am Donnerstag, 11. Juli 2002 10:37 schrieb Willi Egger:
> > \setuplayout[nx=3,ny=1, marking=off]
> 
> Thank you!
> I didn't remember that nx, ny options (and was too blind to find it in the 
> docs).
> 
> But something's wrong: I get every "small" page "nx" times, that is, on every 
> "big" page are nx identical pages.
> 
> 

Hallo Hraban,

have you solved the problem yet? I have a similar problem in that I want four A4
landscape pages in a two by two arrangement on an A2 sheet. No twisting, no turning. 

Greetings

Johannes
-- 
Johannes Hüsing   There is something fascinating about science. One gets
hannes@ruhrau.de  such wholesale returns of conjecture from such a 
                  trifling investment of fact.                Mark Twain


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

* Re: arranging pages
  2002-07-15 18:35     ` Henning Hraban Ramm
@ 2002-07-19 21:27       ` Hans Hagen
  0 siblings, 0 replies; 16+ messages in thread
From: Hans Hagen @ 2002-07-19 21:27 UTC (permalink / raw)
  Cc: ntg-context

At 08:35 PM 7/15/2002 +0200, you wrote:
>Am Montag, 15. Juli 2002 15:02 schrieb Hans Hagen:
> > did you try all arrangements? 2*2 2**2 2SIDE 2Up 2DOWN 2TOP etc
>
>2SIDE is perfectly what I wanted for my planner, if it were "3SIDE".
>And also for my book, if it could begin with a single odd page.
>
>Verbose:
>I need no *imposition* (this time), but a rather simple "doubleside printing"
>arrangement for the correction of the book (it's rather important to see the
>layout of a doublepage together); the first and last page must stand alone.
>
>The other task (for my "filius" planner aka "my brain" ;-) is three
>consecutive portrait pages on one landscape sheet, as
>\definepapersize        [filius][width=92mm, height=172mm]
>\setuppapersize         [filius][A4,landscape]
>\setuparranging         [3SIDE] % doesn't exist

hm, what you can do is the following:

generate the normal document,

make a second file

(try texexec --pdfcombine --comb[2*2] somefile.pdf and look into the 
resulting texexec.tex)

then, define the proofing papersize you want and combine the first file in 
the arrangement you want on that papersize

at the bottom of page-imp.tex you can find commands defined like copypages 
and so, so you can virtually do anothing you want

so, instead of arranging, use copypages/selectpages/etc.

Hans

-------------------------------------------------------------------------
                                   Hans Hagen | PRAGMA ADE | pragma@wxs.nl
                       Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
  tel: +31 (0)38 477 53 69 | fax: +31 (0)38 477 53 74 | www.pragma-ade.com
-------------------------------------------------------------------------
                        information: http://www.pragma-ade.com/roadmap.pdf
                     documentation: http://www.pragma-ade.com/showcase.pdf
-------------------------------------------------------------------------


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

* Re: arranging pages
  2002-07-15 13:02   ` Hans Hagen
@ 2002-07-15 18:35     ` Henning Hraban Ramm
  2002-07-19 21:27       ` Hans Hagen
  0 siblings, 1 reply; 16+ messages in thread
From: Henning Hraban Ramm @ 2002-07-15 18:35 UTC (permalink / raw)
  Cc: ntg-context

Am Montag, 15. Juli 2002 15:02 schrieb Hans Hagen:
> did you try all arrangements? 2*2 2**2 2SIDE 2Up 2DOWN 2TOP etc

2SIDE is perfectly what I wanted for my planner, if it were "3SIDE".
And also for my book, if it could begin with a single odd page.

Verbose:
I need no *imposition* (this time), but a rather simple "doubleside printing" 
arrangement for the correction of the book (it's rather important to see the 
layout of a doublepage together); the first and last page must stand alone.

The other task (for my "filius" planner aka "my brain" ;-) is three 
consecutive portrait pages on one landscape sheet, as
\definepapersize	[filius][width=92mm, height=172mm]
\setuppapersize		[filius][A4,landscape]
\setuparranging		[3SIDE] % doesn't exist

Grüßlis vom Hraban!


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

* Re: arranging pages
  2002-07-12 21:39 ` arranging pages Henning Hraban Ramm
@ 2002-07-15 13:02   ` Hans Hagen
  2002-07-15 18:35     ` Henning Hraban Ramm
  0 siblings, 1 reply; 16+ messages in thread
From: Hans Hagen @ 2002-07-15 13:02 UTC (permalink / raw)
  Cc: ntg-context

At 11:39 PM 7/12/2002 +0200, Henning Hraban Ramm wrote:
>Am Freitag, 12. Juli 2002 18:24 schrieb Hans Hagen:
> > >But something's wrong: I get every "small" page "nx" times, that is, on
> > > every "big" page are nx identical pages.
> > that's intended behaviour of nx/ny,
>
>Ok, so be it.
>But I'd like consecutive pages on one sheet.
>Is there an other solution for my task?

texexec --pdfcombine

did you try all arrangements? 2*2 2**2 2SIDE 2Up 2DOWN 2TOP etc

Hans

-------------------------------------------------------------------------
                                   Hans Hagen | PRAGMA ADE | pragma@wxs.nl
                       Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
  tel: +31 (0)38 477 53 69 | fax: +31 (0)38 477 53 74 | www.pragma-ade.com
-------------------------------------------------------------------------
                        information: http://www.pragma-ade.com/roadmap.pdf
                     documentation: http://www.pragma-ade.com/showcase.pdf
-------------------------------------------------------------------------


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

* Re: arranging pages
       [not found] <5.1.0.14.1.20020712182357.034655c8@remote-1>
@ 2002-07-12 21:39 ` Henning Hraban Ramm
  2002-07-15 13:02   ` Hans Hagen
  0 siblings, 1 reply; 16+ messages in thread
From: Henning Hraban Ramm @ 2002-07-12 21:39 UTC (permalink / raw)
  Cc: ntg-context

Am Freitag, 12. Juli 2002 18:24 schrieb Hans Hagen:
> >But something's wrong: I get every "small" page "nx" times, that is, on
> > every "big" page are nx identical pages.
> that's intended behaviour of nx/ny,

Ok, so be it.
But I'd like consecutive pages on one sheet.
Is there an other solution for my task?

Grüßlis vom Hraban!
-- 
http://www.angerweit.de
http://www.fiee.net
http://www.ramm.ch
---


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

* Re: arranging pages
  2002-07-11  8:37 ` Willi Egger
@ 2002-07-11 18:51   ` Henning Hraban Ramm
  2002-08-01 12:40     ` Johannes Hüsing
  0 siblings, 1 reply; 16+ messages in thread
From: Henning Hraban Ramm @ 2002-07-11 18:51 UTC (permalink / raw)
  Cc: ntg-context

Am Donnerstag, 11. Juli 2002 10:37 schrieb Willi Egger:
> \setuplayout[nx=3,ny=1, marking=off]

Thank you!
I didn't remember that nx, ny options (and was too blind to find it in the 
docs).

But something's wrong: I get every "small" page "nx" times, that is, on every 
"big" page are nx identical pages.

Grüßlis vom Hraban!
-- 
http://www.fiee.net/texnique/
---


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

* Re: arranging pages
  2002-07-11  6:27 Henning Hraban Ramm
@ 2002-07-11  8:37 ` Willi Egger
  2002-07-11 18:51   ` Henning Hraban Ramm
  0 siblings, 1 reply; 16+ messages in thread
From: Willi Egger @ 2002-07-11  8:37 UTC (permalink / raw)
  Cc: ntg-context

Hi Hraban,

> How must I setup arranging to get two or three pages simply consecutive
side
> by side, not arranged for folding?
>

You can define your own page size first. Then you can place pages in a grid
with setuplayout:
Maybe, that you will have to fiddel withe the margins, headerspace etc.

\definepapersize[Mypaper][width=5.5cm,height=8.5cm]
\setuppapersize[Mypaper][A4,landscape]
\setuplayout[nx=3,ny=1, marking=off]

Hope this will give you the desired result

Willi


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

* arranging pages
@ 2002-07-11  6:27 Henning Hraban Ramm
  2002-07-11  8:37 ` Willi Egger
  0 siblings, 1 reply; 16+ messages in thread
From: Henning Hraban Ramm @ 2002-07-11  6:27 UTC (permalink / raw)


Ahoi!

How must I setup arranging to get two or three pages simply consecutive side 
by side, not arranged for folding?

I'd like to print doublesides of a book side by side for correction (saving 
some paper).
Similar would fit three pages for my "filius" planner on an A4. (I managed to 
get a nice ConTeXt output from my MySQL address database with an ugly 
tinkerwork of SQL, Shellscript and SED...)

Grüßlis vom Hraban!
-- 
Henning Hraban Ramm
Minervaweg 2
CH-8280 Kreuzlingen
Telefon +41-71-6712494
---
http://www.angerweit.de
http://www.fiee.net
http://www.ramm.ch
---


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

end of thread, other threads:[~2015-05-24 10:28 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-05-24  9:24 arranging pages Meer, H. van der
2015-05-24 10:07 ` Otared Kavian
2015-05-24 10:22   ` dr. Hans van der Meer
2015-05-24 10:15 ` Otared Kavian
2015-05-24 10:28   ` Meer, H. van der
  -- strict thread matches above, loose matches on Subject: below --
2006-04-25  9:05 Arranging pages Renaud AUBIN
2006-04-25  9:45 ` Willi Egger
     [not found] <5.1.0.14.1.20020712182357.034655c8@remote-1>
2002-07-12 21:39 ` arranging pages Henning Hraban Ramm
2002-07-15 13:02   ` Hans Hagen
2002-07-15 18:35     ` Henning Hraban Ramm
2002-07-19 21:27       ` Hans Hagen
2002-07-11  6:27 Henning Hraban Ramm
2002-07-11  8:37 ` Willi Egger
2002-07-11 18:51   ` Henning Hraban Ramm
2002-08-01 12:40     ` Johannes Hüsing
2002-08-12 18:13       ` Henning Hraban Ramm

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).