Itemize, margins and nowhite
Hello, Strange, but if I specify margins for itemize, then "nowhite" losts its effect, and I need to specify it again in every itemize group. \setupitemize[1,leftmargin=1cm, rightmargin=1cm, nowhite] \startitemize[nowhite] %duplicate, but does not work without it \item a \item b \stopitemize Rgrds, Vyatcheslav
Vyatcheslav Yatskovsky wrote:
Hello,
Strange, but if I specify margins for itemize, then "nowhite" losts its effect, and I need to specify it again in every itemize group.
\setupitemize[1,leftmargin=1cm, rightmargin=1cm, nowhite]
Don't mix keywords and key-value pairs. \setupitemize[1,nowhite] \setupitemize[leftmargin=1cm, rightmargin=1cm] Best wishes, Taco
On Monday 14 June 2010 08:32:08 Taco Hoekwater wrote:
Vyatcheslav Yatskovsky wrote:
Hello,
Strange, but if I specify margins for itemize, then "nowhite" losts its effect, and I need to specify it again in every itemize group.
\setupitemize[1,leftmargin=1cm, rightmargin=1cm, nowhite]
Don't mix keywords and key-value pairs.
\setupitemize[1,nowhite] \setupitemize[leftmargin=1cm, rightmargin=1cm]
This needs to be stressed in the documentation. Is this a parsing restriction, or is this a syntax design goal? This also means that it is an error to attempt: \startitemize[1,nowhite,leftmargin=1cm,rightmargin=1cm] \item ... \stopitemize Alan
Alan BRASLAU wrote:
On Monday 14 June 2010 08:32:08 Taco Hoekwater wrote:
Vyatcheslav Yatskovsky wrote:
Hello,
Strange, but if I specify margins for itemize, then "nowhite" losts its effect, and I need to specify it again in every itemize group.
\setupitemize[1,leftmargin=1cm, rightmargin=1cm, nowhite] Don't mix keywords and key-value pairs.
\setupitemize[1,nowhite] \setupitemize[leftmargin=1cm, rightmargin=1cm]
This needs to be stressed in the documentation. Is this a parsing restriction, or is this a syntax design goal?
It is a parsing restriction, but keeping the processing speed up is important enough that it could also be classified as an unavoidable side-effect of a design goal. Best wishes, Taco
participants (3)
-
Alan BRASLAU
-
Taco Hoekwater
-
Vyatcheslav Yatskovsky