ConTeXt: título superpuesto de texto en enumeración apretada

ConTeXt: título superpuesto de texto en enumeración apretada

Considere el siguiente fragmento de código

\defineenumeration[axiom]
                    [prefix=yes,
                    alternative=serried,
                    text=Axiom,
                    right={.~},
                    title=yes,
                    titlestyle={\tf},
                    titleleft={(},
                    titleright={)},
                    style={\it}]

\startTEXpage
\startaxiom[title={Incidence Axiom I}]
  For every pair of distinct points $P$ and $Q$ there is exactly one line $l$ such that $P$ and $Q$ lie on $l$.
\stopaxiom
\stopTEXpage

Este fragmento de código produce una enumeración simple de axiomas. Ahora, al usarlo, el título se superpone al contenido del texto del axioma, así:

ingrese la descripción de la imagen aquí

¿Cómo puedo evitar ese comportamiento?

Respuesta1

Agregar width=fit.

\defineenumeration
  [axiom]
  [prefix=yes,
  alternative=serried,
  text=Axiom,
  right={.~},
  title=yes,
  titlestyle={\tf},
  titleleft={(},
  titleright={)},
  width=fit,
  style={\it}]

\startTEXpage[offset=1dk]
\startaxiom[title={Incidence Axiom I}]
  For every pair of distinct points $P$ and $Q$ there is exactly one line $l$ such that $P$ and $Q$ lie on $l$.
\stopaxiom
\stopTEXpage

con con = encajar

información relacionada