Am 12.03.2015 um 10:49 schrieb Mikael P. Sundqvist
: On Thu, Mar 12, 2015 at 10:39 AM, MANUEL GONZALEZ SUAREZ
wrote: Dear friends. I have one basic question, but I'm not very skilled in ConTeXt: How I can do that in a list, display each of the items with a lowercase Greek letter followed by a parenthesis? That is:
alpha) beta) etc.
Thanks very much.
___________________________________________________________________________________ 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 : http://foundry.supelec.fr/projects/contextrev/ wiki : http://contextgarden.net ___________________________________________________________________________________
This works here:
\setupbodyfont[pagella]
\starttext \startitemize[g][,stopper=,right=)] \item Hellow \item Hi \item Good bye \stopitemize \stoptext
I think you have to use a font that has the lower case greek letters available.
For Latin Modern you can use the mathgreek conversion which uses the math font. \starttext \startitemize[mathgreek][,stopper=,right=)] \item Hellow \item Hi \item Good bye \stopitemize \stoptext Wolfgang