Am 16.07.2012 um 22:02 schrieb Hans Hagen:
Hi,
I uploaded a new beta. The usual fixes. New is a first version of a new multi column handler. Pretty experimental but eventually it will replace the current multi column routine, which is fact is then an instance, think of
\definemixedcolumns [columns]
\unexpanded\def\setupcolumns {\setupmixedcolumns[columns]}
The simple columns routine is already replaced (by an instance) as is the multi column handler of itemize.
Shouldn’t this \unexpanded\def\strc_itemgroups_start_columns {\startitemgroupcolumns} \unexpanded\def\strc_itemgroups_stop_columns {\stopitemgroupcolumns} be changed to \unexpanded\def\strc_itemgroups_start_columns {\startmixedcolumns[itemgroupcolumns]} \unexpanded\def\strc_itemgroups_stop_columns {\stopmixedcolumns} because “start” and “stop” are interface/language dependant strings. Can you include a check (\ifinner … \fi) to change the columns method from “otr” to “box” when the items are in a box, e.g. in a framedtext environment or a layer. %\setupmixedcolumns[itemgroupcolumns][method=box] \starttext \startframedtext[width=max] \startitemize[columns,two] \startitem One \stopitem \startitem Two \stopitem \startitem Three \stopitem \startitem Four \stopitem \stopitemize \stopframedtext \stoptext Wolfgang