[NTG-context] \placeinitial and indenting

2012-03-16 Thread Alan Braslau
\placeinitial does not play well with indenting.

% Minimal example:
\setupindenting [big,yes]
\starttext
\placeinitial
%\noindent
\input tufte

\input ward
\stoptext
%



Of course, uncommenting the \noindent is an aesthetic solution.
1. Should \noindent be included by default in \placeinitial
2. or, should \placeinitial be fixed to correctly handle indenting?

Alan
___
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] define macro from xml-attribute

2012-03-16 Thread Meer, H. van der
I would like to accomplish the following in xml processing.

node macro=various macro calls and then define the attribute value as a TeX 
macro.
For example, to use this in font switching: node 
macro=\switchtobodyfont[helvetica]

Doing this in the following manner does not work:

\startxmlsetups namespace
  \def\macro{\xmlattdef{#1}{macro}{\empty}} 
\stopxmlsetups

The contents evaluates not to a working macro.
Something with catcodes, I presume, but I do not how to do it properly.
Preferably I would like to see \meaning\macro evaluate to: 
\switchtobodyfont[helvetica].

Can someone enlighten me?

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] footnotes (\autoinsertnextspace)

2012-03-16 Thread Alan Braslau
Hello,

I know that footnotes have been rewritten.
Now, \autoinsertnextspace is ignored.

Alan

Minimal example:

\setupfootnotes [next=\autoinsertnextspace]
%\setupnote [footnote] [next=\autoinsertnextspace] % same as above...

\starttext
\input tufte
\startfootnote
This is a footnote.
\stopfootnote
\input ward
\stoptext
___
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] define macro from xml-attribute

2012-03-16 Thread Hans Hagen

On 16-3-2012 10:25, Meer, H. van der wrote:

I would like to accomplish the following in xml processing.

node macro=various macro calls  and then define the attribute value as a 
TeX macro.
For example, to use this in font switching:node 
macro=\switchtobodyfont[helvetica]

Doing this in the following manner does not work:

\startxmlsetups namespace
   \def\macro{\xmlattdef{#1}{macro}{\empty}}
\stopxmlsetups

The contents evaluates not to a working macro.
Something with catcodes, I presume, but I do not how to do it properly.
Preferably I would like to see \meaning\macro evaluate to: 
\switchtobodyfont[helvetica].

Can someone enlighten me?

\edef

-
  Hans Hagen | PRAGMA ADE
  Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
tel: 038 477 53 69 | voip: 087 875 68 74 | www.pragma-ade.com
 | www.pragma-pod.nl
-
___
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] Line Wrapping/Hyphenation in Chapter/Section Headings

2012-03-16 Thread Malte Stien
Hi all,

I seem to have a problem with line wrapping/hyphenation in chapter/section 
headings. I have a chapter heading Technical Definitions, Acronyms and 
Abbreviations. When I setup my chapter headings as follows

 \setuphead[chapter][style=\tfc\ss\bf, alternative=inmargin]

the heading is hyphenated like so:

 Technical Definitions, Acronyms and Abbrevi-
 ations

However, I don't want my headings hyphenated. How can I change that? I found 
this:

 \setuphead[chapter][style=\tfc\ss\bf, alternative=inmargin, 
align=nothyphenated]

That prevents the hyphenation, but it also seems to prevent the wrapping of the 
line altogether with the result that now my headings run right across the right 
margin and over the right edge of the paper. How can I turn off hyphenation but 
retain wrapping of the line, like so

 Technical Definitions, Acronyms and
 Abbreviations

Thank you,
Malte.
___
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] Line Wrapping/Hyphenation in Chapter/Section Headings

2012-03-16 Thread Wolfgang Schuster

Am 16.03.2012 um 12:09 schrieb Malte Stien:

 Hi all,
 
 I seem to have a problem with line wrapping/hyphenation in chapter/section 
 headings. I have a chapter heading Technical Definitions, Acronyms and 
 Abbreviations. When I setup my chapter headings as follows
 
 \setuphead[chapter][style=\tfc\ss\bf, alternative=inmargin]
 
 the heading is hyphenated like so:
 
 Technical Definitions, Acronyms and Abbrevi-
 ations
 
 However, I don't want my headings hyphenated. How can I change that? I found 
 this:
 
 \setuphead[chapter][style=\tfc\ss\bf, alternative=inmargin, 
 align=nothyphenated]
 
 That prevents the hyphenation, but it also seems to prevent the wrapping of 
 the line altogether with the result that now my headings run right across the 
 right margin and over the right edge of the paper. How can I turn off 
 hyphenation but retain wrapping of the line, like so

Use “align={flushleft,nothyphenated}”.

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] Integration of all the information around ConTeXt

2012-03-16 Thread Jan Heinen

Hello,

with the help of ConTeXt and the ConTeXt-Mailinglist I 
successfully have generated a book which will be printed 
next week :-)

Thankl you - everyone!

And now I would like to give something back to ConTeXt :-)

There is a lot of information around ConTeXt: Material of 
Hans Hagen, this very dynamic Mailinglist/Forum, the 
command-reference-list of Wolfgang Schuster  and the 
Contextgarden-Wiki.


I think the best what I can do for ConTeXt is helping to 
structure, organize and integrating the huge amount of 
existing information.

And the wiki ist a very good place to do al this work.

Since several years I am running an own wiki with mediawiki.
After informing Hans, Taco and Mojca Miklavec, I no have 
started, to rename all the commands from reference/en/... to 
command/...
The .htaccess takes care, that all the old names will be 
forwarded to the new names.


Then I have build a startting-category: ConTeXt and every 
subcategory is a branch of it. So we have a tree with all 
the wiki-information starting at ConTeXt. You can find 
this startingpoint on http://www.contextgarden.net on the 
right side: Categories.
I have started to organize the sub-categories ... but 
everyone who likes ConTeXt is invited to improve the wiki.


A very good help would be:
All the commands of context (more than 500) are in one huge 
category:commands
For the users it would be usefull to build subcategories for 
the commands.


1. login (or first register on contextgarden.net)
2. Go to a command, e.g. command/about: 
http://wiki.contextgarden.net/Command/about

3. Click on edit (top of page)
4. go to the bottom of the source-code
5. add to
[[category:Commands]]
[[category:xxx]] xxx = new name or existing name
6. save the changes
7. now you can see the category at the bottom of the page.
8. if it is red - click on it
9. then write
[[category:commands]]
to link it to the tree,

I hope lot's of you help at least a little bit ... it's fun 
:-) And it's for ConTeXt.


Regards
Jannis

___
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] more indenting

2012-03-16 Thread Alan Braslau
I'm sure that someone is going to tell me that indenting is ugly, bad
typesetting practice.

But if I do want to use indenting, there are times when it should be
suppressed, perhaps automatically (like when immediately following a
heading, as is the current practice).

The minimal example below is another such situation:
\startquotation\stopquotation
\setupquotation [before=\noindent,after=\noindent]
would be one solution, but it does not work - maybe the syntax is
wrong; maybe I'm missing a critical \par. I haven't managed to figure
this out myself, looking at the source code. Any suggestions? Thanks!

Alan


% Minimal example:
\setupindenting [big,yes]
\setupquotation [before=\noindent] % no effect

\starttext
\input tufte
\startquotation
\input tufte
\stopquotation
\noindent
\input tufte
\stoptext
___
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] Footnotes in combinations don't work?

2012-03-16 Thread Procházka Lukáš Ing . - Pontex s . r . o .

Hello,

slightly discussed several days ago...

Footnote in a combination is not shown anywhere:


\starttext
  \startcombination[1*1]
{Aaa\footnote{Footnote}}{}
  \stopcombination
\stoptext


Bug, feature (= footnotes are not supposed to be in a combination) or another 
approach must be chosen to show the footnote?

Best regards,

Lukas


--
Ing. Lukáš Procházka [mailto:l...@pontex.cz]
Pontex s. r. o.  [mailto:pon...@pontex.cz] [http://www.pontex.cz]
Bezová 1658
147 14 Praha 4

Tel: +420 244 062 238
Fax: +420 244 461 038

t-Foot2.mkiv
Description: Binary data


t-Foot2.pdf
Description: Adobe PDF document
___
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] more indenting

2012-03-16 Thread luigi scarso
On Fri, Mar 16, 2012 at 4:38 PM, Alan Braslau alan.bras...@cea.fr wrote:
 I'm sure that someone is going to tell me that indenting is ugly, bad
 typesetting practice.

 But if I do want to use indenting, there are times when it should be
 suppressed, perhaps automatically (like when immediately following a
 heading, as is the current practice).

 The minimal example below is another such situation:
 \startquotation\stopquotation
 \setupquotation [before=\noindent,after=\noindent]
 would be one solution, but it does not work - maybe the syntax is
 wrong; maybe I'm missing a critical \par. I haven't managed to figure
 this out myself, looking at the source code. Any suggestions? Thanks!

 Alan


 % Minimal example:
 \setupindenting [big,yes]
 \setupquotation [before=\noindent] % no effect

 \starttext
 \input tufte
 \startquotation
 \input tufte
 \stopquotation
 \noindent
 \input tufte
 \stoptext
\setupindenting [big,yes]
\setupquotation [indentnext=no,indenting=no]

\starttext
\input tufte
\startquotation
\input tufte
\stopquotation
\input tufte
\stoptext

-- 
luigi
___
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] more indenting

2012-03-16 Thread Aditya Mahajan

On Fri, 16 Mar 2012, luigi scarso wrote:


On Fri, Mar 16, 2012 at 4:38 PM, Alan Braslau alan.bras...@cea.fr wrote:

I'm sure that someone is going to tell me that indenting is ugly, bad
typesetting practice.

But if I do want to use indenting, there are times when it should be
suppressed, perhaps automatically (like when immediately following a
heading, as is the current practice).

The minimal example below is another such situation:
\startquotation\stopquotation
\setupquotation [before=\noindent,after=\noindent]
would be one solution, but it does not work - maybe the syntax is
wrong; maybe I'm missing a critical \par. I haven't managed to figure
this out myself, looking at the source code. Any suggestions? Thanks!

Alan


% Minimal example:
\setupindenting [big,yes]
\setupquotation [before=\noindent] % no effect

\starttext
\input tufte
\startquotation
\input tufte
\stopquotation
\noindent
\input tufte
\stoptext

\setupindenting [big,yes]
\setupquotation [indentnext=no,indenting=no]


Also see

www.tug.org/TUGboat/tb29-2/tb92mahajan.pdf

Aditya
___
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] Integration of all the information around ConTeXt

2012-03-16 Thread Jan Heinen

At step 5 (see below) please delete
[[category:Commands]]

But only when you write a new category.


And I just got the proof for my book ... it looks great!

Regards
Jannis


- Copy -

Hello,


with the help of ConTeXt and the ConTeXt-Mailinglist I 
successfully have generated a book which will be printed 
next week :-)


Thankl you - everyone!

And now I would like to give something back to ConTeXt :-)


There is a lot of information around ConTeXt: Material of 
Hans Hagen, this very dynamic Mailinglist/Forum, the 
command-reference-list of Wolfgang Schuster and the 
Contextgarden-Wiki. I think the best what I can do for 
ConTeXt is helping to structure, organize and integrating 
the huge amount of existing information.


And the wiki ist a very good place to do al this work.

Since several years I am running an own wiki with mediawiki.

After informing Hans, Taco and Mojca Miklavec, I no have 
started, to rename all the commands from reference/en/... to 
command/... The .htaccess takes care, that all the old names 
will be forwarded to the new names. Then I have build a 
startting-category: ConTeXt and every subcategory is a 
branch of it. So we have a tree with all the 
wiki-information starting at ConTeXt. You can find this 
startingpoint on http://www.contextgarden.net on the right 
side: Categories. I have started to organize the 
sub-categories ... but everyone who likes ConTeXt is invited 
to improve the wiki.


A very good help would be:

All the commands of context (more than 500) are in one huge 
category:commands For the users it would be usefull to build 
subcategories for the commands.


1. login (or first register on contextgarden.net)

2. Go to a command, e.g. command/about: 
http://wiki.contextgarden.net/Command/about


3. Click on edit (top of page)
4. go to the bottom of the source-code
5. add to
[[category:Commands]]
[[category:xxx]] xxx = new name or existing name
6. save the changes
7. now you can see the category at the bottom of the page.
8. if it is red - click on it
9. then write
[[category:commands]]
to link it to the tree,


I hope lot's of you help at least a little bit ... it's fun 
:-) And it's for ConTeXt.


Regards
Jannis




___
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] more indenting

2012-03-16 Thread Peter Wüsten
Am Freitag, den 16.03.2012, 17:01 +0100 schrieb Alan Braslau:

 % Minimal example:
 \setupindenting [big,yes]
 \setupquotation [before=\noindent] % no effect
\setupquotation [indenting=next] % noindent only at beginning of
quotation

 \starttext
 \input tufte
 \startquotation
 \input tufte
 \stopquotation
 \noindent
 \input tufte
 \stoptext

Cheers,

Peter Wüsten

___
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] Integration of all the information around ConTeXt

2012-03-16 Thread Kip Warner
On Fri, 2012-03-16 at 13:24 +0100, Jan Heinen wrote:
 I think the best what I can do for ConTeXt is helping to 
 structure, organize and integrating the huge amount of 
 existing information.

Hear, hear!

-- 
Kip Warner -- Software Engineer
OpenPGP encrypted/signed mail preferred
http://www.thevertigo.com


signature.asc
Description: This is a digitally signed message part
___
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] lucida ot

2012-03-16 Thread Hans Hagen

Hi,

It's now possible to order the new lucida open type (+math) fonts.

Pretty cheap for user group members,

Hans

-
  Hans Hagen | PRAGMA ADE
  Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
tel: 038 477 53 69 | voip: 087 875 68 74 | www.pragma-ade.com
 | www.pragma-pod.nl
-
___
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] lucida ot

2012-03-16 Thread Aditya Mahajan

On Fri, 16 Mar 2012, Hans Hagen wrote:


It's now possible to order the new lucida open type (+math) fonts.


Great news! Finally another opentype math font.

I am assuming that ConTeXt already has support for the fonts, right?

Aditya
___
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] lucida ot

2012-03-16 Thread Hans Hagen

On 16-3-2012 22:03, Aditya Mahajan wrote:

On Fri, 16 Mar 2012, Hans Hagen wrote:


It's now possible to order the new lucida open type (+math) fonts.


Great news! Finally another opentype math font.

I am assuming that ConTeXt already has support for the fonts, right?


sure, see type-imp-lucidaopentype.mkiv

Hans


-
  Hans Hagen | PRAGMA ADE
  Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
tel: 038 477 53 69 | voip: 087 875 68 74 | www.pragma-ade.com
 | www.pragma-pod.nl
-
___
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] lucida ot

2012-03-16 Thread Meer, H. van der
Where to order? Is there special pricing for NTG members? Or else what does it 
cost?

Hans van der Meer



On 16 mrt. 2012, at 21:50, Hans Hagen wrote:

Hi,

It's now possible to order the new lucida open type (+math) fonts.

Pretty cheap for user group members,

Hans

___
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] lucida ot

2012-03-16 Thread Hans Hagen

On 16-3-2012 23:08, Meer, H. van der wrote:

Where to order? Is there special pricing for NTG members? Or else what does it 
cost?


http://tug.org/store/lucida/order.html


-
  Hans Hagen | PRAGMA ADE
  Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
tel: 038 477 53 69 | voip: 087 875 68 74 | www.pragma-ade.com
 | www.pragma-pod.nl
-
___
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] ntg-context Digest, Vol 93, Issue 55

2012-03-16 Thread Malte Stien
 can do for ConTeXt is helping to 
 structure, organize and integrating the huge amount of 
 existing information.
 And the wiki ist a very good place to do al this work.
 
 Since several years I am running an own wiki with mediawiki.
 After informing Hans, Taco and Mojca Miklavec, I no have 
 started, to rename all the commands from reference/en/... to 
 command/...
 The .htaccess takes care, that all the old names will be 
 forwarded to the new names.
 
 Then I have build a startting-category: ConTeXt and every 
 subcategory is a branch of it. So we have a tree with all 
 the wiki-information starting at ConTeXt. You can find 
 this startingpoint on http://www.contextgarden.net on the 
 right side: Categories.
 I have started to organize the sub-categories ... but 
 everyone who likes ConTeXt is invited to improve the wiki.
 
 A very good help would be:
 All the commands of context (more than 500) are in one huge 
 category:commands
 For the users it would be usefull to build subcategories for 
 the commands.
 
 1. login (or first register on contextgarden.net)
 2. Go to a command, e.g. command/about: 
 http://wiki.contextgarden.net/Command/about
 3. Click on edit (top of page)
 4. go to the bottom of the source-code
 5. add to
 [[category:Commands]]
 [[category:xxx]] xxx = new name or existing name
 6. save the changes
 7. now you can see the category at the bottom of the page.
 8. if it is red - click on it
 9. then write
 [[category:commands]]
 to link it to the tree,
 
 I hope lot's of you help at least a little bit ... it's fun 
 :-) And it's for ConTeXt.
 
 Regards
 Jannis
 
 
 
 --
 
 Message: 4
 Date: Fri, 16 Mar 2012 16:38:40 +0100
 From: Alan Braslau alan.bras...@cea.fr
 To: mailing list for ConTeXt users ntg-context@ntg.nl
 Subject: [NTG-context]  more indenting
 Message-ID: 20120316163840.1fd49...@iram-hb-003386.extra.cea.fr
 Content-Type: text/plain; charset=US-ASCII
 
 I'm sure that someone is going to tell me that indenting is ugly, bad
 typesetting practice.
 
 But if I do want to use indenting, there are times when it should be
 suppressed, perhaps automatically (like when immediately following a
 heading, as is the current practice).
 
 The minimal example below is another such situation:
 \startquotation\stopquotation
 \setupquotation [before=\noindent,after=\noindent]
 would be one solution, but it does not work - maybe the syntax is
 wrong; maybe I'm missing a critical \par. I haven't managed to figure
 this out myself, looking at the source code. Any suggestions? Thanks!
 
 Alan
 
 
 % Minimal example:
 \setupindenting [big,yes]
 \setupquotation [before=\noindent] % no effect
 
 \starttext
 \input tufte
 \startquotation
 \input tufte
 \stopquotation
 \noindent
 \input tufte
 \stoptext
 
 
 --
 
 Message: 5
 Date: Fri, 16 Mar 2012 16:41:40 +0100
 From: Proch?zka Luk?? Ing. - Pontex s. r. o.  l...@pontex.cz
 To: ConTeXt ntg-context@ntg.nl
 Subject: [NTG-context] Footnotes in combinations don't work?
 Message-ID: op.wa9sjqq8tpjj8f@lpr
 Content-Type: text/plain; charset=iso-8859-2; Format=flowed;
   DelSp=yes
 
 Hello,
 
 slightly discussed several days ago...
 
 Footnote in a combination is not shown anywhere:
 
 
 \starttext
   \startcombination[1*1]
 {Aaa\footnote{Footnote}}{}
   \stopcombination
 \stoptext
 
 
 Bug, feature (= footnotes are not supposed to be in a combination) or another 
 approach must be chosen to show the footnote?
 
 Best regards,
 
 Lukas
 
 
 -- 
 Ing. Luk?? Proch?zka [mailto:l...@pontex.cz]
 Pontex s. r. o.  [mailto:pon...@pontex.cz] [http://www.pontex.cz]
 Bezov? 1658
 147 14 Praha 4
 
 Tel: +420 244 062 238
 Fax: +420 244 461 038
 -- next part --
 A non-text attachment was scrubbed...
 Name: t-Foot2.mkiv
 Type: application/octet-stream
 Size: 101 bytes
 Desc: not available
 URL: 
 http://www.ntg.nl/pipermail/ntg-context/attachments/20120316/7113557c/attachment-0001.obj
 -- next part --
 A non-text attachment was scrubbed...
 Name: t-Foot2.pdf
 Type: application/pdf
 Size: 6149 bytes
 Desc: not available
 URL: 
 http://www.ntg.nl/pipermail/ntg-context/attachments/20120316/7113557c/attachment-0001.pdf
 
 --
 
 Message: 6
 Date: Fri, 16 Mar 2012 17:01:15 +0100
 From: luigi scarso luigi.sca...@gmail.com
 To: mailing list for ConTeXt users ntg-context@ntg.nl
 Subject: Re: [NTG-context] more indenting
 Message-ID:
   cag5igscc-aekoz_4collgwfzbcpj9ji96v4rybbol17owpf...@mail.gmail.com
 Content-Type: text/plain; charset=UTF-8
 
 On Fri, Mar 16, 2012 at 4:38 PM, Alan Braslau alan.bras...@cea.fr wrote:
 I'm sure that someone is going to tell me that indenting is ugly, bad
 typesetting practice.
 
 But if I do want to use indenting, there are times when it should be
 suppressed, perhaps automatically (like when immediately following a
 heading, as is the current practice).
 
 The minimal example below is another

Re: [NTG-context] Line Wrapping/Hyphenation in Chapter/Section Headings

2012-03-16 Thread Malte Stien
 do for ConTeXt is helping to 
 structure, organize and integrating the huge amount of 
 existing information.
 And the wiki ist a very good place to do al this work.
 
 Since several years I am running an own wiki with mediawiki.
 After informing Hans, Taco and Mojca Miklavec, I no have 
 started, to rename all the commands from reference/en/... to 
 command/...
 The .htaccess takes care, that all the old names will be 
 forwarded to the new names.
 
 Then I have build a startting-category: ConTeXt and every 
 subcategory is a branch of it. So we have a tree with all 
 the wiki-information starting at ConTeXt. You can find 
 this startingpoint on http://www.contextgarden.net on the 
 right side: Categories.
 I have started to organize the sub-categories ... but 
 everyone who likes ConTeXt is invited to improve the wiki.
 
 A very good help would be:
 All the commands of context (more than 500) are in one huge 
 category:commands
 For the users it would be usefull to build subcategories for 
 the commands.
 
 1. login (or first register on contextgarden.net)
 2. Go to a command, e.g. command/about: 
 http://wiki.contextgarden.net/Command/about
 3. Click on edit (top of page)
 4. go to the bottom of the source-code
 5. add to
 [[category:Commands]]
 [[category:xxx]] xxx = new name or existing name
 6. save the changes
 7. now you can see the category at the bottom of the page.
 8. if it is red - click on it
 9. then write
 [[category:commands]]
 to link it to the tree,
 
 I hope lot's of you help at least a little bit ... it's fun 
 :-) And it's for ConTeXt.
 
 Regards
 Jannis
 
 
 
 --
 
 Message: 4
 Date: Fri, 16 Mar 2012 16:38:40 +0100
 From: Alan Braslau alan.bras...@cea.fr
 To: mailing list for ConTeXt users ntg-context@ntg.nl
 Subject: [NTG-context]  more indenting
 Message-ID: 20120316163840.1fd49...@iram-hb-003386.extra.cea.fr
 Content-Type: text/plain; charset=US-ASCII
 
 I'm sure that someone is going to tell me that indenting is ugly, bad
 typesetting practice.
 
 But if I do want to use indenting, there are times when it should be
 suppressed, perhaps automatically (like when immediately following a
 heading, as is the current practice).
 
 The minimal example below is another such situation:
 \startquotation\stopquotation
 \setupquotation [before=\noindent,after=\noindent]
 would be one solution, but it does not work - maybe the syntax is
 wrong; maybe I'm missing a critical \par. I haven't managed to figure
 this out myself, looking at the source code. Any suggestions? Thanks!
 
 Alan
 
 
 % Minimal example:
 \setupindenting [big,yes]
 \setupquotation [before=\noindent] % no effect
 
 \starttext
 \input tufte
 \startquotation
 \input tufte
 \stopquotation
 \noindent
 \input tufte
 \stoptext
 
 
 --
 
 Message: 5
 Date: Fri, 16 Mar 2012 16:41:40 +0100
 From: Proch?zka Luk?? Ing. - Pontex s. r. o.  l...@pontex.cz
 To: ConTeXt ntg-context@ntg.nl
 Subject: [NTG-context] Footnotes in combinations don't work?
 Message-ID: op.wa9sjqq8tpjj8f@lpr
 Content-Type: text/plain; charset=iso-8859-2; Format=flowed;
   DelSp=yes
 
 Hello,
 
 slightly discussed several days ago...
 
 Footnote in a combination is not shown anywhere:
 
 
 \starttext
   \startcombination[1*1]
 {Aaa\footnote{Footnote}}{}
   \stopcombination
 \stoptext
 
 
 Bug, feature (= footnotes are not supposed to be in a combination) or another 
 approach must be chosen to show the footnote?
 
 Best regards,
 
 Lukas
 
 
 -- 
 Ing. Luk?? Proch?zka [mailto:l...@pontex.cz]
 Pontex s. r. o.  [mailto:pon...@pontex.cz] [http://www.pontex.cz]
 Bezov? 1658
 147 14 Praha 4
 
 Tel: +420 244 062 238
 Fax: +420 244 461 038
 -- next part --
 A non-text attachment was scrubbed...
 Name: t-Foot2.mkiv
 Type: application/octet-stream
 Size: 101 bytes
 Desc: not available
 URL: 
 http://www.ntg.nl/pipermail/ntg-context/attachments/20120316/7113557c/attachment-0001.obj
 -- next part --
 A non-text attachment was scrubbed...
 Name: t-Foot2.pdf
 Type: application/pdf
 Size: 6149 bytes
 Desc: not available
 URL: 
 http://www.ntg.nl/pipermail/ntg-context/attachments/20120316/7113557c/attachment-0001.pdf
 
 --
 
 Message: 6
 Date: Fri, 16 Mar 2012 17:01:15 +0100
 From: luigi scarso luigi.sca...@gmail.com
 To: mailing list for ConTeXt users ntg-context@ntg.nl
 Subject: Re: [NTG-context] more indenting
 Message-ID:
   cag5igscc-aekoz_4collgwfzbcpj9ji96v4rybbol17owpf...@mail.gmail.com
 Content-Type: text/plain; charset=UTF-8
 
 On Fri, Mar 16, 2012 at 4:38 PM, Alan Braslau alan.bras...@cea.fr wrote:
 I'm sure that someone is going to tell me that indenting is ugly, bad
 typesetting practice.
 
 But if I do want to use indenting, there are times when it should be
 suppressed, perhaps automatically (like when immediately following a
 heading, as is the current practice).
 
 The minimal example below is another

[NTG-context] Itemize without page break

2012-03-16 Thread Kip Warner
Hey list,

Is there any way to hint to ConTeXt that the contents of a \startitemize
\stopitemize pair should try to be all on the same page?

-- 
Kip Warner -- Software Engineer
OpenPGP encrypted/signed mail preferred
http://www.thevertigo.com


signature.asc
Description: This is a digitally signed message part
___
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
___