
Greetings, I have 365 short poems; one for each day of the year. I thought I'd wrap each month in an enumeration and use the item numbers as titles. My MWE raises several questions: How do I center an index above its item? How do I keep an index and its item together? How do I keep an item's text together? Here I've resorted to an ugly kludge where I wrap each item in a \start-\stopframedtext pair. What's the right way? Perhaps an itemized list is the wrong approach. Any suggestions would be appreciated. With kind regards, Michael \setupbodyfont[10pt] \usesymbols[mvs] \setupsymbolset [martinvogel 2] \def\ornament{\darkred\symbol[Radioactivity]} \starttexdefinition Ornamentation #1 \framed[frame=on] {\ornament\ {#1}\ \ornament} \stoptexdefinition \starttexdefinition OrdinalDate #1 \Ornamentation{\tfb\getmarking[chapter]\space\ordinalnumber{#1}} \stoptexdefinition \definesymbol [ordinal_symbol] [{\OrdinalDate{\currentitemnumber}}] \setupitemize[symbol=ordinal_symbol] \definestartstop[framedtextitem] [before={\startitem\startframedtext}, after={\stopframedtext\stopitem}] \startbuffer This is a test. For the next sixty seconds, this station will conduct a test of the Emergency Broadcast System. This is only a test. The broadcasters of your area in voluntary cooperation with the FCC and other authorities have developed this system to keep you informed in the event of an emergency. If this had been an actual emergency, you would have been instructed where to tune in your area for news and official information. This station serves the Palookaville area. This concludes this test of the Emergency Broadcast System. \stopbuffer \setupcolumns[n=2, balance=yes] \starttext \placecontent \startchapter[title={January}] \startcolumns \startitemize \dorecurse{13}{ \startframedtextitem \getbuffer \stopframedtextitem} \stopitemize \stopcolumns \stopchapter \stoptext