What is the ConTeXt equivalent of \usepackage[inline]{enumitem}?
See: How to make horizontal lists?
I have read https://wiki.contextgarden.net/Command/_setupitemgroup without finding what I need.
What is the ConTeXt equivalent of \usepackage[inline]{enumitem}?
See: How to make horizontal lists?
I have read https://wiki.contextgarden.net/Command/_setupitemgroup without finding what I need.
You can use the text option.
You can set it for a single list:
\startTEXpage
Before text
\startitemize[A, text]
\item One
\item Two
\item Three
\stopitemize
after text.
\stopTEXpage
Or for all lists of a certain type:
\setupitemize[1][n][style=ssbf]
\setupitemize[2][text, KR]
\startTEXpage
\startitemize
\item \startitemize
\item One
\item Two
\item Three
\stopitemize
\item \startitemize
\item Four
\item Five
\item Six
\stopitemize
\item \startitemize
\item Seven
\item Eight
\item Nine
\stopitemize
\stopitemize
\stopTEXpage
textkey, you can get rid of the parentheses by\setupitemize[2][text,KR][lefttext=,righttext=]. – mickep Dec 04 '23 at 20:44