Am 26.10.2010 um 09:48 schrieb Murat Demirten:
Hi,
I'm so new in the Context's voodoo world and I'm trying to build an exam from a questions database.
A regular question has 5 options and only one correct answer.
I want to prepare a good looking pdf file, the most important requirement for the pdf is that, a question and all of its 5 options must be on the same page.
So I found the startframedtext command and start to work on it. Now I have 16 questions and their options in the tex file, but on the Page1 only questions 1-6 shown and question 6 divided. On the second page it continue from question 16 (7-15 doesn't shown).
I've no idea about this, if anyone can show me a way to found real problem I'll be very glad.
The odd behavior is caused by the „columns“ option in the itemize (which will never work for you in your file because you use it inside framedtext where columns are not possible). You can also see the effect in this far simpler example: \starttext \dorecurse{20} {\startframedtext \startcolumns text \stopcolumns \stopframedtext} \stoptext Wolfgang