Am 06.09.2010 um 17:55 schrieb Cecil Westerhof:
I ran it with batchmode and silent, so I did not see errors, but it is not correct. I get: ! Use of \CheckBoxes doesn't match its definition. l.19 \CheckBoxes Y es, No, A little bit
[...]
So '\def\CheckBoxes[#1]%' is wrong, but what should it be?
Use the command in the correct way: \CheckBoxes[Yes, No, A little bit] \def\CheckBoxes[#1]% {\startitemize[packed][margin=2.5em,width=2em] \processcommalist[#1]\doCheckBoxes \stopitemize} \def\doCheckBoxes#1% {\sym{[\hspace[big]]}#1\par} % \hspace[big] = 1em For a paragraph delimited version of \Checkboxes you can write \def\CheckBoxes#1\par {\startitemize[packed][margin=2.5em,width=2em] \processcommalist[#1]\doCheckBoxes \stopitemize} but this is not very context like. Wolfgang