\startitemize[beforehead=xxx]
Hello, does somebody know how to get some space between two \head entries in the ConTeXt-way? I tried the following, but without success: \starttext begin \startitemize[packed][beforehead=\blank,headstyle=bold] \head head\par line \head head\par line \head head\par line \stopitemize end \stoptext Only with the following hack, I get the desired result: \starttext begin \startitemize[packed][headstyle=bold] \let\headO\head \def\head{\blank\headO} \head head\par line \head head\par line \head head\par line \stopitemize end \stoptext Cheers, Peter -- http://pmrb.free.fr/contact/
Peter Münster wrote:
Hello,
does somebody know how to get some space between two \head entries in the ConTeXt-way?
I tried the following, but without success:
\starttext begin \startitemize[packed][beforehead=\blank,headstyle=bold]
You can't use packed and beforehead at the same time. \startitemize[beforehead=\blank,afterhead=,headstyle=bold] Greetings, Taco
On Mon, 6 Jun 2005, Taco Hoekwater wrote:
I tried the following, but without success:
\starttext begin \startitemize[packed][beforehead=\blank,headstyle=bold]
You can't use packed and beforehead at the same time.
\startitemize[beforehead=\blank,afterhead=,headstyle=bold]
Thanks, I understand better now! So it seems, that "packed" is evaluated after the key=value pairs and overwrites the before... and after... options. Ok. Cheers, Peter -- http://pmrb.free.fr/contact/
participants (2)
-
Peter Münster
-
Taco Hoekwater