Re: [NTG-context] mkiv versus mkii: whitespace issues

2015-03-22 Thread Wolfgang Schuster

 Am 21.03.2015 um 19:49 schrieb Gerben Wierda gerben.wie...@rna.nl:
 
 On 20 Mar 2015, at 18:33, Wolfgang Schuster schuster.wolfg...@gmail.com 
 wrote:
 
 
 Am 20.03.2015 um 14:43 schrieb Gerben Wierda gerben.wie...@rna.nl:
 
 Sorry to ask again, but is there no solution?
 
 Can you send a *working* minimal example!
 
 I don’t know how. It happens with my project. I can’t publish my entire 
 project’s source code as it is for a book that is sold commercially.
 
 I’ll look into trying to make a minimal example. But so far I haven’t been 
 able to.

The initial is the problem but you can fix this when you replace \GotoPar with 
a different mechanism.

 begin example
\showgrid

\definelist[chaptertext][style=\itx]

\define[1]\ChapterAbstract{\doflushatpar{\writetolist[chaptertext]{}{#1}}}

\starttext

\title{\headtext{content}}

\placelist[chapter,chaptertext]

\chapter{Knuth}

\ChapterAbstract{\input ward }

\placeinitial\input knuth

\stoptext
 end 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
___

Re: [NTG-context] mkiv versus mkii: whitespace issues

2015-03-21 Thread Gerben Wierda
On 20 Mar 2015, at 18:33, Wolfgang Schuster schuster.wolfg...@gmail.com wrote:

 
 Am 20.03.2015 um 14:43 schrieb Gerben Wierda gerben.wie...@rna.nl:
 
 Sorry to ask again, but is there no solution?
 
 Can you send a *working* minimal example!

I don’t know how. It happens with my project. I can’t publish my entire 
project’s source code as it is for a book that is sold commercially.

I’ll look into trying to make a minimal example. But so far I haven’t been able 
to.

G

 
 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
 ___

___
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] mkiv versus mkii: whitespace issues

2015-03-20 Thread Gerben Wierda
Sorry to ask again, but is there no solution?

G

On 16 Mar 2015, at 15:03, Gerben Wierda gerben.wie...@rna.nl wrote:

 
 On 15 Mar 2015, at 23:24, Wolfgang Schuster schuster.wolfg...@gmail.com 
 wrote:
 
 
 Am 14.03.2015 um 15:54 schrieb Gerben Wierda gerben.wie...@rna.nl:
 
 I am running into two issues with my mkii-to-mkiv conversion project
 
 - The \chapter command in mkiv uses more whitespace between the header and 
 the first paragraph. How can I influence this?
 
 The different space before the \chapter is caused by the “fixed” keyword for 
 \blank
 which produce different result with MkII and MkIV and the MkIV behaviour need
 to be corrected.
 
 The space after \chapter comes from your \writetolist entry and you can 
 correct
 this with the \GotoPar command at the end of the entry as shown below.
 
  begin example
 \showgrid
 
 \setuphead[chapter][before={\blank[force,2*line]}]
 
 \starttext
 
 \chapter{Knuth}
 
 \writetolist[chapter]{}{}\GotoPar
 
 \input knuth
 
 \stoptext
  end example
 
 Thanks. I tried this
 
 % Every chapter starts with a quote on the LHS page:
 \setuphead
   [chapter]
   [page=,
before={\setups[chapter:before]},
after={\setups[chapter:after]}]
 
 \startsetups chapter:before
 \page[left]
 \noheaderandfooterlines
 \startalignment[left,nothyphenated]
   \startnarrower[4*left]
 \em \getbuffer[chapter:quote]
   \stopnarrower
 \stopalignment
 \resetsetups[quote:text]
 \page[right]
 \noheaderandfooterlines
 \blank[force,2*big]
 \stopsetups
 
 \startsetups chapter:after
 \blank[3*big]
 \stopsetups
 
 \definelist[chaptertext]
 \setuplist[chaptertext][margin=1.3em,pagecommand=\gobbleoneargument]
 \define[1]\ChapterAbstract{\writetolist[chaptertext]{}{\start\itx#1\stop}\GotoPar}
 
 
 (Adding the \GotoPar at the end) but it did not had any effect. At one place 
 (no chapter but an unnumbered title, it doesn’t work as well. Here I now have:
 
 \title[h:grief1]{Intermezzo:\\
 A short story about grief}
 \writetolist[chapter]{}{Intermezzo: A Short Story about Grief}\GotoPar
 \ChapterAbstract{A small fragment of a movie script that beautifully
 illustrates the gap between the rational and the real.}
 
 I changed it to 
 \title[h:grief1]{Intermezzo:\\
 A short story about grief}
 \writetolist[chapter]{}{Intermezzo: A Short Story about Grief}\GotoPar
 \ChapterAbstract{A small fragment of a movie script that beautifully
 illustrates the gap between the rational and the real.}\GotoPar
 
 And that works. So I changed it in another chapter to
 
 \chapter[h:loosely]{Prologue:\\Loosely Coupled Spaghetti}
 \ChapterAbstract{Starting with an example of how things can go wrong in a
 current Business-IT landscape, we notice that these kinds of problems have
 existed almost for as long as IT has existed, and that no proposed `silver
 bullet' has ever solved them. The goal of the book is introduced.}\GotoPar
 
 \placeinitial S{\kap{\bf uppose we}} have a system for the approval of loans. 
 The
 business logic has been put into a Business Rule Engine (BRE)
 system\footnote{If you are not technical and terms like `application server',
 
 But there it doesn’t. Apparently, I am still missing something. 
 
 G
 
 
 
 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
 ___
 
 ___
 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] mkiv versus mkii: whitespace issues

2015-03-20 Thread Wolfgang Schuster

 Am 20.03.2015 um 14:43 schrieb Gerben Wierda gerben.wie...@rna.nl:
 
 Sorry to ask again, but is there no solution?

Can you send 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
___

Re: [NTG-context] mkiv versus mkii: whitespace issues

2015-03-16 Thread Gerben Wierda

On 15 Mar 2015, at 23:24, Wolfgang Schuster schuster.wolfg...@gmail.com wrote:

 
 Am 14.03.2015 um 15:54 schrieb Gerben Wierda gerben.wie...@rna.nl:
 
 I am running into two issues with my mkii-to-mkiv conversion project
 
 - The \chapter command in mkiv uses more whitespace between the header and 
 the first paragraph. How can I influence this?
 
 The different space before the \chapter is caused by the “fixed” keyword for 
 \blank
 which produce different result with MkII and MkIV and the MkIV behaviour need
 to be corrected.
 
 The space after \chapter comes from your \writetolist entry and you can 
 correct
 this with the \GotoPar command at the end of the entry as shown below.
 
  begin example
 \showgrid
 
 \setuphead[chapter][before={\blank[force,2*line]}]
 
 \starttext
 
 \chapter{Knuth}
 
 \writetolist[chapter]{}{}\GotoPar
 
 \input knuth
 
 \stoptext
  end example

Thanks. I tried this

% Every chapter starts with a quote on the LHS page:
\setuphead
  [chapter]
  [page=,
   before={\setups[chapter:before]},
   after={\setups[chapter:after]}]

\startsetups chapter:before
\page[left]
\noheaderandfooterlines
\startalignment[left,nothyphenated]
\startnarrower[4*left]
\em \getbuffer[chapter:quote]
\stopnarrower
\stopalignment
\resetsetups[quote:text]
\page[right]
\noheaderandfooterlines
\blank[force,2*big]
\stopsetups

\startsetups chapter:after
\blank[3*big]
\stopsetups

\definelist[chaptertext]
\setuplist[chaptertext][margin=1.3em,pagecommand=\gobbleoneargument]
\define[1]\ChapterAbstract{\writetolist[chaptertext]{}{\start\itx#1\stop}\GotoPar}


(Adding the \GotoPar at the end) but it did not had any effect. At one place 
(no chapter but an unnumbered title, it doesn’t work as well. Here I now have:

\title[h:grief1]{Intermezzo:\\
A short story about grief}
\writetolist[chapter]{}{Intermezzo: A Short Story about Grief}\GotoPar
\ChapterAbstract{A small fragment of a movie script that beautifully
illustrates the gap between the rational and the real.}

I changed it to 
\title[h:grief1]{Intermezzo:\\
A short story about grief}
\writetolist[chapter]{}{Intermezzo: A Short Story about Grief}\GotoPar
\ChapterAbstract{A small fragment of a movie script that beautifully
illustrates the gap between the rational and the real.}\GotoPar

And that works. So I changed it in another chapter to

\chapter[h:loosely]{Prologue:\\Loosely Coupled Spaghetti}
\ChapterAbstract{Starting with an example of how things can go wrong in a
current Business-IT landscape, we notice that these kinds of problems have
existed almost for as long as IT has existed, and that no proposed `silver
bullet' has ever solved them. The goal of the book is introduced.}\GotoPar

\placeinitial S{\kap{\bf uppose we}} have a system for the approval of loans. 
The
business logic has been put into a Business Rule Engine (BRE)
system\footnote{If you are not technical and terms like `application server',

But there it doesn’t. Apparently, I am still missing something. 

G


 
 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
 ___

___
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] mkiv versus mkii: whitespace issues

2015-03-15 Thread Gerben Wierda
mkii result



On 14 Mar 2015, at 17:14, Wolfgang Schuster schuster.wolfg...@gmail.com wrote:

 
 Am 14.03.2015 um 15:54 schrieb Gerben Wierda gerben.wie...@rna.nl:
 
 I am running into two issues with my mkii-to-mkiv conversion project
 
 - The \chapter command in mkiv uses more whitespace between the header and 
 the first paragraph. How can I influence this?
 - \startitemize[packed,joinedup] inserts whitespace between the list and the 
 paragraph before it where mkii doesn’t
 
 How can I fix this?
 
 Do you have a example because I can’t reproduce it.
 
 \showgrid
 
 \starttext
 
 \chapter{\contextmark}
 
 \input knuth
 
 \startitemize[packed,joinedup]
 \item One
 \item Two
 \item Three
 \stopitemize
 
 \stoptext 
 
 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
 ___

___
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] mkiv versus mkii: whitespace issues

2015-03-15 Thread Gerben Wierda
mkiv result



On 14 Mar 2015, at 17:14, Wolfgang Schuster schuster.wolfg...@gmail.com wrote:

 
 Am 14.03.2015 um 15:54 schrieb Gerben Wierda gerben.wie...@rna.nl:
 
 I am running into two issues with my mkii-to-mkiv conversion project
 
 - The \chapter command in mkiv uses more whitespace between the header and 
 the first paragraph. How can I influence this?
 - \startitemize[packed,joinedup] inserts whitespace between the list and the 
 paragraph before it where mkii doesn’t
 
 How can I fix this?
 
 Do you have a example because I can’t reproduce it.
 
 \showgrid
 
 \starttext
 
 \chapter{\contextmark}
 
 \input knuth
 
 \startitemize[packed,joinedup]
 \item One
 \item Two
 \item Three
 \stopitemize
 
 \stoptext 
 
 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
 ___

___
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] mkiv versus mkii: whitespace issues

2015-03-15 Thread Gerben Wierda
I’m struggling to make a minimal example.It happens in my project, so it is a 
result of my …/products/prd_book.tex and ../environment/env_cataoia.tex and the 
test file. I need to give three files, two of which differ between mkii and 
mkiv because of different font commands and lettrine vs initial

prd_book.tex ===
\startproduct prd_book
\project project_cataoia

\starttext
\start
\startstandardmakeup[doublesided=no]
\ss
\hairline \start
\blank[line]
\switchtobodyfont[16pt]\bf
\leftaligned{Chess}%
\blank[line]
\leftaligned{and the Art of}%
\blank[line]
\leftaligned{Enterprise Architecture}%
\stop
\hairline \blank[line]
\leftaligned{Making the right moves to manage Business--IT complexity}%
\hairline \blank[line]\rightaligned{Gerben Wierda}%
\blank[6cm]\start\leftskip=10cm\hairline\stop
\rightaligned{2015}%
\stopstandardmakeup
\startstandardmakeup[doublesided=no,page=no]
~\blank[2in]
\start
\switchtobodyfont[9pt]
Copyright \copyright\ 2015 by Gerben Wierda, The Netherlands\crlf
Image used on cover (and on the inside) \copyright\ iStock.com/Antonio
\blank[4mm]
Published by R\A, The Netherlands
\blank[4mm]
Typeset with \TeX, using the mkii version of the \SSCONTEXT\ macro package.
\blank[4mm]
Neither the author, nor the publisher, nor the printer, nor the distributor,
nor the seller accept any responsibility or liability for loss or damage
occasioned to any person or property through using the material, instructions,
methods or ideas contained in or distributed with this book, or acting or
refraining from acting as a result of such use. The author, publisher,
printer, distributor, and seller expressly disclaim all implied warranties,
including merchantability of fitness for any particular purpose.
\blank[4mm]
ISBN 978-90-819840-5-8
\blank[4mm]
Contact info: {\sl i...@enterprisechess.com}\crlf Web site: {\sl
http://enterprisechess.com}\crlf Suggested hashtag: {\sl \#eachess}
\stop
\stopstandardmakeup
\startstandardmakeup[doublesided=no]
\start
\switchtobodyfont[16pt]
\midaligned{The world is not {\blackboard Q}, it is {\blackboard R}}
\blank[6cm]
\stop
\stopstandardmakeup
\stop
\startfrontmatter
\startbuffer [chapter:quote]
%When teaching a rapidly changing technology, perspective is more important
%than content\crlf
%{\tf Richard~Pattis}
The most erroneous stories are those we think we know best --- and therefore
never scrutinize or question.\crlf
{\tf Stephen Jay Gould}
\stopbuffer
\noheaderandfooterlines
\start
\title[h:toc]{Contents}
\setuppagenumber[number=3]
\placelist[chapter,chaptertext]
\stop
\component c_loosely
\stopfrontmatter
\startbodymatter
\component c_inconvenient
\component c_goals
\component c_orthodoxy
\component c_intermezzo
\component c_chess
\component c_model
\component c_future
\component c_hurdles
\stopbodymatter
\startappendices
%   \component c_logic
\component c_cloud
\component c_current
\component c_fsatemplate
\component c_psatemplate
\component c_bibliography
\component c_endnotes
\component c_index
\stopappendices
\stoptext

\stopcomponent
=

env_cataoia.tex mkii =
\startenvironment env_cataoia
\project project_cataoia
%
\definedescription [description]
[location=serried, width=broad, hang=fit, margin=standard,
headstyle=bold]
\definestartstop [descriptions] [before=\startpacked,
after=\stoppacked]
%
\def\SSCONTEXT {Con\kern-.15em\TeX t}
%
%
\definepapersize[smallpaperback][width=5in,height=8in]
\setuppapersize[smallpaperback][smallpaperback]
\setuplayout[location=doublesided]
\setuppagenumbering[alternative=doublesided]
\setupsectionblock[frontpart][page=no]
\setupsectionblock[bodypart][page=no]
\setupsectionblock[appendix][page=no]
\setupsectionblock[backpart][page=no]

% Every chapter body text starts with lettrine:
\usemodule[lettrine]
\setuplettrine[Lines=3,
   Hang=.5,
   Oversize=0,
   Raise=0,
   Findent=0pt,
   Nindent=0em,
   Slope=0em,
   Ante=,
   FontHook=,
   TextFont=\sc,
   Image=no]

% Every chapter starts with a quote on the LHS page:
\setuphead
  [chapter]
  [page=,
   before={\setups[chapter:before]},
   after={\setups[chapter:after]}]

\startsetups chapter:before
\page[left]
\noheaderandfooterlines
\startalignment[left,nothyphenated]
\startnarrower[4*left]
\em \getbuffer[chapter:quote]
\stopnarrower
\stopalignment
\resetsetups[quote:text]
\page[right]
\noheaderandfooterlines
\blank[force,2*big]
\stopsetups

\startsetups chapter:after
\blank[3*big]
\stopsetups

% Mark TODO items in the text
\def\todo#1{{\red --- --- --- TODO: {#1} --- --- ---}}

%

Re: [NTG-context] mkiv versus mkii: whitespace issues

2015-03-15 Thread Gerben Wierda
The itemize white space issue was a difference in handling \reference. In mkii 
a \reference between \startitemize and the first item did not produce empty 
space, in mkiv it does. I moved the \reference to inside the \item

G

On 14 Mar 2015, at 17:14, Wolfgang Schuster schuster.wolfg...@gmail.com wrote:

 
 Am 14.03.2015 um 15:54 schrieb Gerben Wierda gerben.wie...@rna.nl:
 
 I am running into two issues with my mkii-to-mkiv conversion project
 
 - The \chapter command in mkiv uses more whitespace between the header and 
 the first paragraph. How can I influence this?
 - \startitemize[packed,joinedup] inserts whitespace between the list and the 
 paragraph before it where mkii doesn’t
 
 How can I fix this?
 
 Do you have a example because I can’t reproduce it.
 
 \showgrid
 
 \starttext
 
 \chapter{\contextmark}
 
 \input knuth
 
 \startitemize[packed,joinedup]
 \item One
 \item Two
 \item Three
 \stopitemize
 
 \stoptext 
 
 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
 ___

___
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] mkiv versus mkii: whitespace issues

2015-03-15 Thread Wolfgang Schuster

 Am 14.03.2015 um 15:54 schrieb Gerben Wierda gerben.wie...@rna.nl:
 
 I am running into two issues with my mkii-to-mkiv conversion project
 
 - The \chapter command in mkiv uses more whitespace between the header and 
 the first paragraph. How can I influence this?

The different space before the \chapter is caused by the “fixed” keyword for 
\blank
which produce different result with MkII and MkIV and the MkIV behaviour need
to be corrected.

The space after \chapter comes from your \writetolist entry and you can correct
this with the \GotoPar command at the end of the entry as shown below.

 begin example
\showgrid

\setuphead[chapter][before={\blank[force,2*line]}]

\starttext

\chapter{Knuth}

\writetolist[chapter]{}{}\GotoPar

\input knuth

\stoptext
 end 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
___

Re: [NTG-context] mkiv versus mkii: whitespace issues

2015-03-15 Thread Wolfgang Schuster

 Am 15.03.2015 um 15:57 schrieb Gerben Wierda gerben.wie...@rna.nl:
 
 The itemize white space issue was a difference in handling \reference. In 
 mkii a \reference between \startitemize and the first item did not produce 
 empty space, in mkiv it does. I moved the \reference to inside the \item

For numbered items you can use the optional argument of \item to set a 
reference.

\starttext

\startitemize[n]
\item[item:one] First item
\item[item:two] Second item
\stopitemize

\page

Take a look at \in{item}[item:two] on \at{page}[item:two].

\stoptext

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] mkiv versus mkii: whitespace issues

2015-03-14 Thread Gerben Wierda
I am running into two issues with my mkii-to-mkiv conversion project

- The \chapter command in mkiv uses more whitespace between the header and the 
first paragraph. How can I influence this?
- \startitemize[packed,joinedup] inserts whitespace between the list and the 
paragraph before it where mkii doesn’t

How can I fix this?

G
___
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] mkiv versus mkii: whitespace issues

2015-03-14 Thread Wolfgang Schuster

 Am 14.03.2015 um 15:54 schrieb Gerben Wierda gerben.wie...@rna.nl:
 
 I am running into two issues with my mkii-to-mkiv conversion project
 
 - The \chapter command in mkiv uses more whitespace between the header and 
 the first paragraph. How can I influence this?
 - \startitemize[packed,joinedup] inserts whitespace between the list and the 
 paragraph before it where mkii doesn’t
 
 How can I fix this?

Do you have a example because I can’t reproduce it.

\showgrid

\starttext

\chapter{\contextmark}

\input knuth

\startitemize[packed,joinedup]
\item One
\item Two
\item Three
\stopitemize

\stoptext 

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
___