From: Haejoong L. <hae...@un...> - 2003-04-30 17:44:48
|
Oops, there are typos. > <Annotation start="c" end="d"> > <Feature id="ann2" name="txt">are</Feature> > <Feature name="right_sibling">ann3</Feature> > </Annotation> This should be: <Annotation id="ann2" start="c" end="d"> <Feature name="txt">are</Feature> ... </Annotation> > <Annotation start="e" end="f"> > <Feature id="ann3" name="txt">you</Feature> > <Feature name="right_sibling"></Feature> > </Annotation> Similarly, this should be: <Annotation id="ann3" start="e" end="f"> <Feature name="txt">you</Feature> ... </Annotation> Haejoong |