On Sun, 15 Mar 2009, Chen Shen wrote:
Hi Aditya,
minimal example: \starttext $\Vert x \Vert$
$\left\Vert x \right\Vert$ \stoptext
When I run context, the first line passes, but no vertical bar is displayed. The second line triggers the following error message:
! Missing delimiter (. inserted). <to be read again> \Umathchar \Vert ->\Umathchar "0 "0 "2225 l.4 $\left\Vert x \right\Vert$
thanks a lot.
Make the following change in char-def.lua and regenerate formats. @@ -52729,8 +52729,7 @@ characters.data={ linebreak="ai", mathspec={ { class="relation", name="parallel" }, - { class="nothing", name="Vert" }, + { class="delimiter", name="Vert" }, { class="nothing", name="Arrowvert" }, { class="open", name="lVert" }, { class="close", name="rVert" }, Aditya