Am 25.03.2012 um 10:36 schrieb Jaroslav Hajtmar:
Hello all, can somehow insert the chapter (section, subsection, ...) number as a prefix of itemize list?
Thanx Jaroslav
Example show exactly what I mean:
\section{First section}
\startitemize \item aaa \item bbb \item ccc \stopitemize
\section{Second section}
\startitemize \item ddd \item eee \item fff \stopitemize
\section{Third section}
\startitemize \item ggg \item hhh \item iii \stopitemize
Requested result:
1. First section
1.1 aaa .......... (prefixsectionnumber.itemnumber) 1.2 bbb 1.3 ccc
2. Second section
2.1 ddd 2.2 eee 2.3 fff
3. Third section
3.1 ggg 3.2 hhh 3.3 iii
Don’t you have something challenging? \setupitemize[each][n,broad][prefix=yes] \starttext \section{First section} \startitemize \item aaa \item bbb \item ccc \stopitemize \section{Second section} \startitemize \item ddd \item eee \item fff \stopitemize \section{Third section} \startitemize \item ggg \item hhh \item iii \stopitemize \stoptext Wolfgang