How do you in ConTeXt the same as in latex, that is make enumerations list format like this:
- Prefix 1 (content)
- Prefix 2 (content)
- Prefix 3 (content)
How do you in ConTeXt the same as in latex, that is make enumerations list format like this:
Use left and increase the width.
\starttext
\startitemize[n][left={\symbol[bullet] Prefix }, width=5em]
\item (content)
\item (content)
\item (content)
\stopitemize
\stoptext
You can also calculate the width automatically, by using the keyword fit. Then you will have to add something to the right however, e.g. \space.
\starttext
\startitemize[n,fit][left={\symbol[bullet] Prefix },right={\space}]
\item (content)
\item (content)
\item (content)
\stopitemize
\stoptext
\startitemize[n,fit][left={Objectius },right={\space}]
– somenxavier
Dec 04 '16 at 11:31
\startitemize[n][left={Prefix },]– Aditya Nov 27 '16 at 02:49