[NTG-context] How to stop ConTeXt from thinking period is at the end of a sentence?

2024-05-04 Thread Joel via ntg-context
I noticed that some code is being rendered wrong, most especially apparent in a 
column environment where sometimes the text can get stretched a bit more to fit 
the column width nicer.

If a sentence says "They appeared between c. 1200 BCE and c. 1500 CE." it 
appears ConTeXt thinks that the period in "c." marks the end of a sentence. As 
such, when setting the text, sometimes it will give a large space between "c." 
and "1200 BCE".
How do I correctly tell ConTeXt that that period doesn't mark the end of a 
sentence, so shouldn't be given extra space afterwards?
--Joel
___
If your question is of interest to others as well, please add an entry to the 
Wiki!

maillist : ntg-context@ntg.nl / 
https://mailman.ntg.nl/mailman3/lists/ntg-context.ntg.nl
webpage  : https://www.pragma-ade.nl / https://context.aanhet.net (mirror)
archive  : https://github.com/contextgarden/context
wiki : https://wiki.contextgarden.net
___


[NTG-context] How to stop

2024-01-27 Thread Joel via ntg-context
I have a document that uses ~40 different TABLE configurations, each with their 
own special requirements, such as these below, and in total, perhaps 2000 
tables appear in a file, using one of the configurations.

                        \setupTABLE[r][1][align=raggedleft]
                            \setupTABLE[c][1][width=.1\textwidth]
                            \setupTABLE[c][2][width=.33\textwidth]
                            \setupTABLE[c][3][width=.37\textwidth]
                            \setupTABLE[c][4][width=.1\textwidth]
                            \setupTABLE[c][5][width=.1\textwidth]
                            \setupTABLE[c][1,2,3,4,5][align=raggedleft, 
frame=off]
                            
%\setupTABLE[r][2,3,4,5,6,8,9,11,12,14][bottomframe=off]
                            \setupTABLE[r][1][bottomframe=on]
                            \bTABLE[split=yes]
                                \bTR\bTD {\it Lesson}        \eTD\bTD {\it 
Time} \\eTD\bTD {\it Date} \eTD\bTD {\it Page} \eTD\eTR
                            \eTABLE
What I've been finding is that previous settings on TABLES appearing earlier in 
the document is impacting later tables. For instance, if one has a frame to the 
right of column 1, then the next table seems to acquire this setting as well, 
even if it isn't expected to have any frames at all.

Note that each unique table is defined inside a macro.

How can I make these table settings only apply to the a specific table?

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

maillist : ntg-context@ntg.nl / 
https://mailman.ntg.nl/mailman3/lists/ntg-context.ntg.nl
webpage  : https://www.pragma-ade.nl / https://context.aanhet.net (mirror)
archive  : https://github.com/contextgarden/context
wiki : https://wiki.contextgarden.net
___


Re: [NTG-context] How to stop enumerated tabulate environments from shifting to the right?

2022-11-12 Thread fv leung via ntg-context
Will this suit you?

\starttext
\input knuth

\startitemize[n]
\item x
\stopitemize


 \startitemize[n][leftmargindistance=-.1\textwidth,width=.1\textwidth]

 
\starttabulate[|lp(.1\textwidth)|cp(.35\textwidth)|cp(.2\textwidth)|cp(.35\textwidth)|]
\NI \NC \NC \NC\NR
\NC \NC \NC \NC\NR
\stoptabulate
\stopitemize

\input knuth
\stoptext


Joel via ntg-context  於 2022年11月13日 週日 凌晨12:11寫道:

> When I place a tabulate environment inside itemize, it indents and the
> entire table is shifted to the right about 1/2".
>
> \starttext
> \input knuth
>
> \startitemize[n]
> \item x
> \stopitemize
>
> \startitemize[n]
>
>  
> \starttabulate[|lp(.1\textwidth)|cp(.35\textwidth)|cp(.2\textwidth)|cp(.35\textwidth)|]
> \NI \NC \NC \NC\NR
> \NC \NC \NC \NC\NR
> \stoptabulate
> \stopitemize
>
> \input knuth
> \stoptext
>
> See this code which when compiled, the first itemize numbers line up with
> the left edge of text, but the one with tables indents. It also seems to
> spill into the right margin.
>
> How can I stop enumerated table environments from indenting?
>
> --Joel
>
> ___
> If your question is of interest to others as well, please add an entry to
> the Wiki!
>
> maillist : ntg-context@ntg.nl /
> https://www.ntg.nl/mailman/listinfo/ntg-context
> webpage  : https://www.pragma-ade.nl / http://context.aanhet.net
> archive  : https://bitbucket.org/phg/context-mirror/commits/
> wiki : https://contextgarden.net
>
> ___
>
___
If your question is of interest to others as well, please add an entry to the 
Wiki!

maillist : ntg-context@ntg.nl / https://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : https://www.pragma-ade.nl / http://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki : https://contextgarden.net
___


[NTG-context] How to stop enumerated tabulate environments from shifting to the right?

2022-11-12 Thread Joel via ntg-context
When I place a tabulate environment inside itemize, it indents and the entire 
table is shifted to the right about 1/2".
\starttext
    \input knuth

        \startitemize[n]
            \item x
        \stopitemize

        \startitemize[n]
            
\starttabulate[|lp(.1\textwidth)|cp(.35\textwidth)|cp(.2\textwidth)|cp(.35\textwidth)|]
                \NI \NC \NC \NC\NR
                \NC \NC \NC \NC\NR
            \stoptabulate
        \stopitemize
        
        \input knuth\stoptext

See this code which when compiled, the first itemize numbers line up with the 
left edge of text, but the one with tables indents. It also seems to spill into 
the right margin.

How can I stop enumerated table environments from indenting?
--Joel
___
If your question is of interest to others as well, please add an entry to the 
Wiki!

maillist : ntg-context@ntg.nl / https://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : https://www.pragma-ade.nl / http://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki : https://contextgarden.net
___


Re: [NTG-context] How to stop \placefigure from floating off to some other page?

2022-01-30 Thread Henning Hraban Ramm via ntg-context

Am 30.01.22 um 00:44 schrieb Bruce Horrocks via ntg-context:

On 29 Jan 2022, at 21:30, Joel via ntg-context  wrote:


When I used `\placefigure`, ConTeXt often puts the figure on a completely 
different page, my readership of young students is getting confused where the 
image is. How can I have all of my `\placefigure` in the entire document appear 
exactly where called, even if that means having to place it on a new page with 
lots of space before it or even a new page afterwards? I need it to show up in 
the order it was called. I think `\setupexternalfigures[location=]` should 
provide the solution, but cann't figure what is the correct location, I'm not 
seeing that in the manual anywhere.


Use the force Luke...

e.g.
\placefigure [force] [fig1] {Caption} {\externalfigure [filename.png]}

The location= option is for where on the page (e.g. in a margin, in the main 
text) the picture will go, the actual page it appears on is controlled by 
'here' or 'force' or the default which is to float along until it finds what it 
thinks is a good place.


Not really. "here" and "force" are just options for location, i.e.
location={here,force}
should mostly do what you want.

Hraban
___
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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki : http://contextgarden.net
___


Re: [NTG-context] How to stop columns from splitting up items in a list?

2022-01-29 Thread Bruce Horrocks via ntg-context


> On 29 Jan 2022, at 14:45, Joel via ntg-context  wrote:
> 
> I am writing a workbook that contains a materials list in front of some craft 
> activities.
> 
> I found that simply displaying a bulleted list can take up lots of space on 
> the page, so instead put the list in three columns. The problem is, if there 
> is an item with a somewhat long description, it can be split across columns. 
> See the example below:
> 
> \starttext
> \startcolumns[n=3]%
> \startitemize[1]%
>  \item pizza cutter
>  \item a word processor (or notebook paper)
>  \stopitemize%
>  \stopcolumns%
> \stoptext
> 
> In the example, it split the second item across the columns.
> 
> How can I create columns that don't allow the item to split across them?
> 

Have you tried 

\startitemize[columns,three]

instead of \startcolumns?

There are examples in the manual on page 16


The spacing can be adjusted as well if the default is too big.

—
Bruce Horrocks
Hampshire, UK

___
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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki : http://contextgarden.net
___


Re: [NTG-context] How to stop \placefigure from floating off to some other page?

2022-01-29 Thread Bruce Horrocks via ntg-context
On 29 Jan 2022, at 21:30, Joel via ntg-context  wrote:
> 
> When I used `\placefigure`, ConTeXt often puts the figure on a completely 
> different page, my readership of young students is getting confused where the 
> image is. How can I have all of my `\placefigure` in the entire document 
> appear exactly where called, even if that means having to place it on a new 
> page with lots of space before it or even a new page afterwards? I need it to 
> show up in the order it was called. I think 
> `\setupexternalfigures[location=]` should provide the solution, but cann't 
> figure what is the correct location, I'm not seeing that in the manual 
> anywhere.

Use the force Luke...

e.g.
\placefigure [force] [fig1] {Caption} {\externalfigure [filename.png]}

The location= option is for where on the page (e.g. in a margin, in the main 
text) the picture will go, the actual page it appears on is controlled by 
'here' or 'force' or the default which is to float along until it finds what it 
thinks is a good place.

—
Bruce Horrocks
Hampshire, UK

___
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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki : http://contextgarden.net
___


[NTG-context] How to stop \placefigure from floating off to some other page?

2022-01-29 Thread Joel via ntg-context
When I used `\placefigure`, ConTeXt often puts the figure on a completely 
different page, my readership of young students is getting confused where the 
image is. How can I have all of my `\placefigure` in the entire document appear 
exactly where called, even if that means having to place it on a new page with 
lots of space before it or even a new page afterwards? I need it to show up in 
the order it was called. I think `\setupexternalfigures[location=]` should 
provide the solution, but cann't figure what is the correct location, I'm not 
seeing that in the manual anywhere.
___
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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki : http://contextgarden.net
___


[NTG-context] How to stop columns from splitting up items in a list?

2022-01-29 Thread Joel via ntg-context
I am writing a workbook that contains a materials list in front of some craft 
activities. 
I found that simply displaying a bulleted list can take up lots of space on the 
page, so instead put the list in three columns. The problem is, if there is an 
item with a somewhat long description, it can be split across columns. See the 
example below:
\starttext    \startcolumns[n=3]%    \startitemize[1]% \item 
pizza cutter \item a word processor (or notebook paper) 
\stopitemize% \stopcolumns%\stoptext
In the example, it split the second item across the columns.
How can I create columns that don't allow the item to split across them?
___
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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki : http://contextgarden.net
___


Re: [NTG-context] how to stop pagenumbering

2015-12-27 Thread Meer, Hans van der
More information on this. Statements:


\usemodule[hvdm-dvd]
\starttext
\xmlprocessbuffer{dvd}{xmlbuffer}{}
\stoptext
\endinput

in the hvdm-dvd module \setuppagenumber[state=stop] is put inside

\startxmlsetups setup-name
\setuppapersize[A5][A5]
\setuppagenumber[state=stop]
   "typesetting operations following"
\stopxmlsetups
In this case pagenumber not suppressed.

However with the following order of statements the pagenumber does get 
suppressed.

\starttext
  \setuppagenumber[state=stop]
  \xmlprocessbuffer{dvd}{xmlbuffer}{}
\stoptext

In both cases the call to  \setuppagenumber comes before typesetting the page.
Why is the  \setuppagenumber inside the xmlsetup ignored?

Hans van der Meer




On 27 Dec 2015, at 14:21, Meer, Hans van der 
> wrote:

The command  "\setuppagenumber[state=stop]"  used to stop numbering the pages, 
now it doesn't.
Has this been changed and did I miss that change?

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
___

___
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
___

Re: [NTG-context] how to stop pagenumbering

2015-12-27 Thread Wolfgang Schuster

Meer, Hans van der 
27. Dezember 2015 um 22:25

On 27 Dec 2015, at 21:57, Wolfgang Schuster 
> 
wrote:



Meer, Hans van der 
27. Dezember 2015 um 21:47

One more observation on the strangeness of \setuppagenumber.

Putting \setuppagenumber[number=4] before the call to 
\xmlprocessbuffer and putting\setuppagenumber[state=stop,number=8] 
inside the \startxmlsetups does make the pagenumber having the value 
8. This proves two things:


(1) the \setuppagenumber in the \startxmlsetups is processed before 
the pagenumber is fixed and typeset


(2) the [state=stop] in the \startxmlsetups is wrongfully ignored, 
whereas at the same time [number=8] does get honored.


Imho this demonstrates there is an error in the processing of 
\setuppagenumber when located inside the \startxmlsetups. An error 
that does not occur when called at the \starttext document-level 
before the \xmlprocessbuffer.

Could it be a matter of locality?



You have to provide a *working* minimal example.


Not so simple, alas.
But I will be greatly helped if you can ascertain that

\startxmlsetups
code within
\stopxmlsetups

is code executed locally as if between \begingroup .. \endgroup.
That would explain the behaviour.
The remedy then could be a more global execution of \setuppagenumber.
I have to disappoint you but the content of the setups environment isn't 
grouped.

I already tried in vain \global\settuppagenumber

This doesn't work here.

Wolfgang
___
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
___

Re: [NTG-context] how to stop pagenumbering

2015-12-27 Thread Meer, Hans van der

On 27 Dec 2015, at 21:57, Wolfgang Schuster 
> wrote:

Meer, Hans van der
27. Dezember 2015 um 21:47
One more observation on the strangeness of \setuppagenumber.

Putting \setuppagenumber[number=4] before the call to \xmlprocessbuffer and 
putting \setuppagenumber[state=stop,number=8] inside the \startxmlsetups does 
make the pagenumber having the value 8. This proves two things:

(1) the \setuppagenumber in the \startxmlsetups is processed before the 
pagenumber is fixed and typeset

(2) the [state=stop] in the \startxmlsetups is wrongfully ignored, whereas at 
the same time [number=8] does get honored.

Imho this demonstrates there is an error in the processing of \setuppagenumber 
when located inside the \startxmlsetups. An error that does not occur when 
called at the \starttext document-level before the \xmlprocessbuffer.
Could it be a matter of locality?

You have to provide a *working* minimal example.

Not so simple, alas.
But I will be greatly helped if you can ascertain that

\startxmlsetups
code within
\stopxmlsetups

is code executed locally as if between \begingroup .. \endgroup.
That would explain the behaviour.
The remedy then could be a more global execution of \setuppagenumber.
I already tried in vain \global\settuppagenumber

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
___

Re: [NTG-context] how to stop pagenumbering

2015-12-27 Thread Meer, Hans van der
One more observation on the strangeness of \setuppagenumber.

Putting \setuppagenumber[number=4] before the call to \xmlprocessbuffer and 
putting \setuppagenumber[state=stop,number=8] inside the \startxmlsetups does 
make the pagenumber having the value 8. This proves two things:

(1) the \setuppagenumber in the \startxmlsetups is processed before the 
pagenumber is fixed and typeset

(2) the [state=stop] in the \startxmlsetups is wrongfully ignored, whereas at 
the same time [number=8] does get honored.

Imho this demonstrates there is an error in the processing of \setuppagenumber 
when located inside the \startxmlsetups. An error that does not occur when 
called at the \starttext document-level before the \xmlprocessbuffer.
Could it be a matter of locality?


On 27 Dec 2015, at 17:20, Meer, Hans van der 
> wrote:

More information on this. Statements:


\usemodule[hvdm-dvd]
\starttext
\xmlprocessbuffer{dvd}{xmlbuffer}{}
\stoptext
\endinput

in the hvdm-dvd module \setuppagenumber[state=stop] is put inside

\startxmlsetups setup-name
\setuppapersize[A5][A5]
\setuppagenumber[state=stop]
   "typesetting operations following"
\stopxmlsetups
In this case pagenumber not suppressed.

However with the following order of statements the pagenumber does get 
suppressed.

\starttext
  \setuppagenumber[state=stop]
  \xmlprocessbuffer{dvd}{xmlbuffer}{}
\stoptext

In both cases the call to  \setuppagenumber comes before typesetting the page.
Why is the  \setuppagenumber inside the xmlsetup ignored?

Hans van der Meer




On 27 Dec 2015, at 14:21, Meer, Hans van der 
> wrote:

The command  "\setuppagenumber[state=stop]"  used to stop numbering the pages, 
now it doesn't.
Has this been changed and did I miss that change?

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
___

___
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
___

___
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
___

Re: [NTG-context] how to stop pagenumbering

2015-12-27 Thread Wolfgang Schuster

Meer, Hans van der 
27. Dezember 2015 um 21:47
One more observation on the strangeness of \setuppagenumber.

Putting \setuppagenumber[number=4] before the call to 
\xmlprocessbuffer and putting\setuppagenumber[state=stop,number=8] 
inside the \startxmlsetups does make the pagenumber having the value 
8. This proves two things:


(1) the \setuppagenumber in the \startxmlsetups is processed before 
the pagenumber is fixed and typeset


(2) the [state=stop] in the \startxmlsetups is wrongfully ignored, 
whereas at the same time [number=8] does get honored.


Imho this demonstrates there is an error in the processing of 
\setuppagenumber when located inside the \startxmlsetups. An error 
that does not occur when called at the \starttext document-level 
before the \xmlprocessbuffer.

Could it be a matter of locality?

You have to provide a *working* minimal example.

Wolfgang
___
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
___

[NTG-context] how to stop pagenumbering

2015-12-27 Thread Meer, Hans van der
The command  "\setuppagenumber[state=stop]"  used to stop numbering the pages, 
now it doesn't. 
Has this been changed and did I miss that change?

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
___

[NTG-context] How to stop \setuppagenumbering forcing chapter to start on right?

2007-05-18 Thread Elliot Clifton
Hi,

How can I stop \setuppagenumbering[alternative=doublesided] from
forcing chapters to start on the right? I don't want any blank pages.

Thanks,

Elliot


-- 
 By all means break the rules, and break them beautifully,
deliberately, and well.  That is one of the ends for which they exist.


Robert Bringhurst (1946-)
___
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  : https://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___


Re: [NTG-context] How to stop \setuppagenumbering forcing chapter to start on right?

2007-05-18 Thread Wolfgang Schuster
On Fri, 18 May 2007 11:11:40 +0100
Elliot Clifton [EMAIL PROTECTED] wrote:

 Hi,
 
 How can I stop \setuppagenumbering[alternative=doublesided] from
 forcing chapters to start on the right? I don't want any blank pages.
 
 Thanks,
 
 Elliot

Hi Elliot,

\setuphead
  [chapter]
  [page=yes]

Wolfgang
___
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  : https://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___


Re: [NTG-context] How to stop pagebreak after section heading

2003-07-17 Thread Frank
Inserting \page works.

I don't know why the pagebreak occurs as the \subject heading is  
directly followed by a text paragraph without any extra spacing. The  
heading are using the ConTeXt default setup, with the exception of  
setting the head in color. The only command which influences spacing is  
\setupwhitespace[big].

I guess that the penalty for the pagebreak is higher than that of  
having a pagebreak after the heading.

In any case thanks for the help.

Frank

On Thursday, Jul 17, 2003, at 13:56 Europe/Brussels, Hans Hagen wrote:

At 13:21 17/07/2003 +0200, Peter Rolf wrote:
What happens, if you insert a \page command (ConTeXt manual, real  
page 91) before this heading?
or \testpage[5] which will insert a page break is less than 5 lines  
are available

normally there will be no break after a head unless one puts some  
skips there or some command puts a prefered break there

Hans

--- 
--
  Hans Hagen | PRAGMA ADE |  
[EMAIL PROTECTED]
  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
--- 
--

___
ntg-context mailing list
[EMAIL PROTECTED]
http://www.ntg.nl/mailman/listinfo/ntg-context
___
ntg-context mailing list
[EMAIL PROTECTED]
http://www.ntg.nl/mailman/listinfo/ntg-context