Hamid Kamrani wrote:

Taco, I very much appreciate your solution. It allows me to continue
for now but I humbly ask, in fact, beg to have a solution built in the
core of ConTeXt.

See the attached file how to make a special version of itemize
that has default behaviour like you want. I could have used
\setupitemgroup[itemize] directly instead, but I assume you don't
want your bullet lists right aligned as well.

Since ConTeXt cannot know beforehand how wide the number space
should be (neither do eplain and latex), the 'width' key has to
be a fixed quantity, but you can still change all of the default
parameters where you call \startenumerate, just like you did
before with \startitemize, so that should be only a minor
nuisance.

I do agree it would be better if the core was extended so that
the two setups were not necessary.

Best wishes,
Taco




\unprotect
\startsetups [numberitemleft]
  \hbox to \dimexpr\getitemparameter\itemlevel \c!width - 
                    \getitemparameter\itemlevel \c!distance\relax 
   \bgroup \hfill
\stopsetups

\startsetups [numberitemright]
  \egroup
\stopsetups
\protect

\defineitemgroup
   [enumerate]

\setupitemgroup
   [enumerate]
   [each]
   [n,packed]
   [left={\setups[numberitemleft]},
    right={\setups[numberitemright]},
    stopper={.},
    width=2pc]

\starttext
\startenumerate
     \item The first item.
     \item The second item.
     \item The third item.
     \item The fourth item.
     \item The fifth item.
     \item The sixth item.
     \item The seventh item.
     \item The eighth item.
     \item The ninth item.
     \item The tenth item.
\stopenumerate
\stoptext
___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the 
Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : https://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________

Reply via email to