1

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)

1 Answers1

3

Use left and increase the width.

\starttext

\startitemize[n][left={\symbol[bullet] Prefix }, width=5em]
\item (content)
\item (content)
\item (content)
\stopitemize

\stoptext

enter image description here

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

enter image description here

Henri Menke
  • 109,596