10 Nov
2010
10 Nov
'10
3:14 p.m.
On Wed, 10 Nov 2010, Horacio Suarez wrote:
hello all: I'm shure this is a silly question, but in this code, the second item [Fiesta] disappears -but the dot remains- and in the first item the text inside the brackets is ok. What is wrog? \starttext \startitemize[packed] \item Acto de Apertura [y muestra de emprendimientos]. \item [Fiesta]. \item Acto de cierre. \stopitemize
Item \in[Fiesta] was eaten.
\stoptext
\item takes an optional argument as a label for the reference. If you want to prevent that use either of these: \item \relax [Fiesta] \item {} [Fiesta] \item [] [Fiesta] Aditya