ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* Re: Pagebreaks
@ 2003-09-28 20:22 Thomas A.Schmitz
  0 siblings, 0 replies; 6+ messages in thread
From: Thomas A.Schmitz @ 2003-09-28 20:22 UTC (permalink / raw)


Kudos to Patrick for pointing out what was wrong with my file--he 
helped me immensely, and I'm very grateful to him. The solution is: in 
addition to \clubpenalty and \widowpenalty, there is also 
\brokenpenalty, which enforces the good old typographical rule that no 
page should be broken after a hyphenated word. When I set it to 0, all 
my pages had exactly the same number of lines. Thanks to Patrick, and 
may others find it useful!
Thomas

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

* Re: Pagebreaks
  2003-09-27  7:48 Pagebreaks Thomas A.Schmitz
@ 2003-09-27 18:20 ` Patrick Gundlach
  0 siblings, 0 replies; 6+ messages in thread
From: Patrick Gundlach @ 2003-09-27 18:20 UTC (permalink / raw)


"Thomas A.Schmitz" <thomas.schmitz@uni-bonn.de> writes:

Hello,

> feeling a bit grumpy this morning, are we? ;-)

No. Not really. Do I make such an impression? ;-) Perhaps it is my
'smart-ass-day'... 

> Well, it is kind of difficult to provide a minmal example because, as
> the nature of the problem involves, it would necessarily be more than
> ~2-4 pages of text. 

there is always \dorecurse{#}{what} and \input myfavoritefile 

> If you're interested, I can send you a file off-list, but I don't
> think I should bother everybody here with long excerpts.

You can do that. 



Patrick
-- 
You are your own rainbow!

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

* Re: Pagebreaks
  2003-09-26 16:34   ` Pagebreaks Thomas A.Schmitz
@ 2003-09-27  6:34     ` Patrick Gundlach
  0 siblings, 0 replies; 6+ messages in thread
From: Patrick Gundlach @ 2003-09-27  6:34 UTC (permalink / raw)


"Thomas A.Schmitz" <thomas.schmitz@uni-bonn.de> writes:

> Thanks! This command alleviated the problem without eliminating all
> the "shorter" pages. \setuplayout[grid=yes] actually made it a lot
> worse; almost every page was several lines short. I suspect it might
> have something to with itemizations (of which there are quite a few);
> this seems to confuse (Con)TeX(t).

If you really want your problem solved, you should post an example. 

Patrick
-- 
Why is it so difficult to post a minimal but complete example????

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

* Re: Pagebreaks
  2003-09-26 16:15 ` Pagebreaks Hans Hagen
@ 2003-09-26 16:34   ` Thomas A.Schmitz
  2003-09-27  6:34     ` Pagebreaks Patrick Gundlach
  0 siblings, 1 reply; 6+ messages in thread
From: Thomas A.Schmitz @ 2003-09-26 16:34 UTC (permalink / raw)



On Friday, September 26, 2003, at 06:15  PM, Hans Hagen wrote:

>   \def\defaultwidowpenalty{0}
>   \def\defaultclubpenalty{0}
>
>
Thanks! This command alleviated the problem without eliminating all the 
"shorter" pages. \setuplayout[grid=yes] actually made it a lot worse; 
almost every page was several lines short. I suspect it might have 
something to with itemizations (of which there are quite a few); this 
seems to confuse (Con)TeX(t).

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

* Re: Pagebreaks
  2003-09-26  8:42 Pagebreaks Thomas A.Schmitz
@ 2003-09-26 16:15 ` Hans Hagen
  2003-09-26 16:34   ` Pagebreaks Thomas A.Schmitz
  0 siblings, 1 reply; 6+ messages in thread
From: Hans Hagen @ 2003-09-26 16:15 UTC (permalink / raw)


At 10:42 26/09/2003 +0200, you wrote:
>Dear colisters,
>is there a way to tel Context to be dumb about pagebreaks? I mean to say 
>"fill every page with the exact same number of lines, no matter what, 
>regardless of clubs, widows, women and children"? Here's my setup:
>\setuplayout[lines=17,footer=0.7cm]
>\starttext
>\clubpenalty=0
>\widowpenalty=0
>Nevertheless, some pages are 1 or even three lines shorter than the rest 
>(there are no tables, floats, pictures etc.). Can this be prevented?

   \def\defaultwidowpenalty{0}
   \def\defaultclubpenalty{0}

or maybe:

   setuplayout[grid=yes]

or in the beta i just posted:

\startsetups [NeverMind]

   \setups[*reset]

   \widowpenalty\zerocount
   \clubpenalty \zerocount

\stopsetups

\setuplayout[setups=NeverMind]


or ...

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] 6+ messages in thread

* Pagebreaks
@ 2003-09-26  8:42 Thomas A.Schmitz
  2003-09-26 16:15 ` Pagebreaks Hans Hagen
  0 siblings, 1 reply; 6+ messages in thread
From: Thomas A.Schmitz @ 2003-09-26  8:42 UTC (permalink / raw)


Dear colisters,
is there a way to tel Context to be dumb about pagebreaks? I mean to 
say "fill every page with the exact same number of lines, no matter 
what, regardless of clubs, widows, women and children"? Here's my setup:
\setuplayout[lines=17,footer=0.7cm]
\starttext
\clubpenalty=0
\widowpenalty=0
Nevertheless, some pages are 1 or even three lines shorter than the 
rest (there are no tables, floats, pictures etc.). Can this be 
prevented?
Thanks
Thomas

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

end of thread, other threads:[~2003-09-28 20:22 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-09-28 20:22 Pagebreaks Thomas A.Schmitz
  -- strict thread matches above, loose matches on Subject: below --
2003-09-27  7:48 Pagebreaks Thomas A.Schmitz
2003-09-27 18:20 ` Pagebreaks Patrick Gundlach
2003-09-26  8:42 Pagebreaks Thomas A.Schmitz
2003-09-26 16:15 ` Pagebreaks Hans Hagen
2003-09-26 16:34   ` Pagebreaks Thomas A.Schmitz
2003-09-27  6:34     ` Pagebreaks Patrick Gundlach

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