Re: [NTG-context] A rose by any other name ....

2010-09-17 Thread Peter Rolf
Am 16.09.2010 22:13, schrieb Aditya Mahajan:
 On Thu, 16 Sep 2010, Peter Rolf wrote:
 
 Am 16.09.2010 13:12, schrieb Patrick Gundlach:


 Is it possible to change the name of the font as it appears in the
 pdf file?

 More specifically, I am using Termes font, but I want that the
 document properties to show the name of the font as Times. Is that
 possible? Is doing so a violation of the font license?

 It sounds like a trademark infringement to me. I would be surprised
 if times is not a ®.

 sadly true...
 
 Sigh...Thanks for the clarification.
 
 Better try to convince the customer that a rose is a rose... ;-)
 
 I am still interested in changing the name of the font...not to Times
 but to some gibberish (like the characters that pdftex adds before Type1
 font names). Then, I can blame the font naming on a software limitation ;)

:-D

(untested)

http://fontforge.sourceforge.net/fontinfo.html


 Aditya
 
 
 
 ___
 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
 ___

___
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
___


[NTG-context] slides from ConTeXt meeting

2010-09-17 Thread Mojca Miklavec
For those who were unable to attend - the slides from the marvellously
organized meeting are being collected here:
http://meeting.contextgarden.net/2010/talks/

They will be linked from the main meeting page, but at the moment you
can just browse through them.

Mojca
___
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
___


Re: [NTG-context] Minimals fail to install on SunOS x86

2010-09-17 Thread Mojca Miklavec
On Fri, Sep 17, 2010 at 04:09, Marco wrote:
 Hi,

 I was trying to install the minimals on my SunOS remote server (to have access
 to MkIV everywhere).

 Is SunOS x86 not supported? On the luatex home page I see there are binaries
 available.

For Solaris Sparc we have nobody to compile the binaries at the
moment. The person who asked us for adding Solaris x86 support is not
using Solaris any more, in last month there was no single Solaris user
downloading the minimals and after Oracle overtake, I have been
seriously considering removing support for solaris.

However, if there is demand for it, we can keep it.

 But first-install.sh reports the following errors:

 remote-1 ~/bin/usr/share/context:./first-setup.sh
 receiving incremental file list

 sent 31 bytes  received 126 bytes  104.67 bytes/sec
 total size is 4834848  speedup is 30795.21
 ld.so.1: texlua: Schwerer Fehler: Verschiebungsfehler: Datei
 /storage3_l0/home1/std11815/bin/usr/share/context/bin/texlua: Symbol asprintf:
 referenziertes Symbol nicht gefunden
 ./first-setup.sh: line 103:  6759 Killed (Abgebrochen)    mtxrun --verbose
 --script ./bin/mtx-update.lua --update --make --force --engine=all
 --context=beta --platform=$platform --texroot=$PWD/tex $@

The question is: is these because there's LuaTeX beta-0.61.0 instead
of the latest LuaTeX available or is it because my virtual machine
(OpenSolaris whatever-version-has-been-available-two-months-ago) and
your server incompatible in some sense? I suspect that it is the
second.

If you are willing to help us debug, I can try to send you unstripped binary.

Mojca
___
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
___


[NTG-context] offset for enumeration counter

2010-09-17 Thread Philipp Gesang
Hi all,

some specification requests that a numbered list start at
arbitrary counter values. I'm using the following line after
“\startitemize[...]” to accomplish this:

··8·
\setnumber[itemgroup:itemize]{42}
··8·

Now I'd rather avoid this kind of brute interference with context
internals so I'd like to ask whether there is a recommended
high-level mechanism that I could use instead?

Thanks for your help,
Philipp

-- 
()  ascii ribbon campaign - against html e-mail
/\  www.asciiribbon.org   - against proprietary attachments


pgpytpLY6i2Sl.pgp
Description: PGP signature
___
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
___


Re: [NTG-context] offset for enumeration counter

2010-09-17 Thread Wolfgang Schuster

Am 17.09.2010 um 12:22 schrieb Philipp Gesang:

 Hi all,
 
 some specification requests that a numbered list start at
 arbitrary counter values. I'm using the following line after
 “\startitemize[...]” to accomplish this:
 
 ··8·
 \setnumber[itemgroup:itemize]{42}
 ··8·
 
 Now I'd rather avoid this kind of brute interference with context
 internals so I'd like to ask whether there is a recommended
 high-level mechanism that I could use instead?

\starttext

\startitemize[n]
\dorecurse{4}{\item text}
\stopitemize

\startitemize[n,continue]
\dorecurse{4}{\item text}
\stopitemize

\startitemize[n][start=30]
\dorecurse{4}{\item text}
\stopitemize

\stoptext

Wolfgang

___
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
___


Re: [NTG-context] offset for enumeration counter

2010-09-17 Thread Philipp Gesang
On 2010-09-17 12:31:41, Wolfgang Schuster wrote:
 \starttext
 
 \startitemize[n][start=30]
 \dorecurse{4}{\item text}
 \stopitemize
 
 \stoptext

Great, that's exactly what I was looking for. Now that we're at
it: actually the spec wants this on per-item basis. This would
amount to having another (apart from the reference) argument to
“\item”, e.g.

···8
\startitemize[n]
\item[n=1]  foo 
\item[n=2]  bar 
\item[n=3]  foo 
\item[n=5]  bar 
\item[n=8]  foo 
\item[n=13] bar 
\stopitemize
···8

Regardless of if there's a practical use for that: is this
possible as well without resorting  to repeated \setnumber'ing?

Philipp

 
 Wolfgang
 
 ___
 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
 ___

-- 
()  ascii ribbon campaign - against html e-mail
/\  www.asciiribbon.org   - against proprietary attachments


pgp7n9fmBRqg7.pgp
Description: PGP signature
___
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
___


Re: [NTG-context] offset for enumeration counter

2010-09-17 Thread Wolfgang Schuster

Am 17.09.2010 um 13:11 schrieb Philipp Gesang:

 On 2010-09-17 12:31:41, Wolfgang Schuster wrote:
 \starttext
 
 \startitemize[n][start=30]
 \dorecurse{4}{\item text}
 \stopitemize
 
 \stoptext
 
 Great, that's exactly what I was looking for. Now that we're at
 it: actually the spec wants this on per-item basis. This would
 amount to having another (apart from the reference) argument to
 “\item”, e.g.
 
 ···8
 \startitemize[n]
 \item[n=1]  foo 
 \item[n=2]  bar 
 \item[n=3]  foo 
 \item[n=5]  bar 
 \item[n=8]  foo 
 \item[n=13] bar 
 \stopitemize
 ···8
 
 Regardless of if there's a practical use for that: is this
 possible as well without resorting  to repeated \setnumber'ing?

\starttext
\startitemize
\sym{1.} text
\sym{2.} text
\sym{4.} text
\sym{7.} text
\sym{8.} text
\stopitemize
\stoptext

Wolfgang

___
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
___


Re: [NTG-context] offset for enumeration counter

2010-09-17 Thread Philipp Gesang
On 2010-09-17 15:02:00, Wolfgang Schuster wrote:
 Am 17.09.2010 um 13:11 schrieb Philipp Gesang:
  Regardless of if there's a practical use for that: is this
  possible as well without resorting  to repeated \setnumber'ing?
 
 \starttext
 \startitemize
 \sym{1.} text
 \sym{2.} text
 \sym{4.} text
 \sym{7.} text
 \sym{8.} text
 \stopitemize
 \stoptext

Thanks again! I'll see what I can use this for.

Philipp

-- 
()  ascii ribbon campaign - against html e-mail
/\  www.asciiribbon.org   - against proprietary attachments


pgp2TlptXumYh.pgp
Description: PGP signature
___
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
___


Re: [NTG-context] Minimals fail to install on SunOS x86

2010-09-17 Thread Marco
On Fri, 17 Sep 2010 10:54:26 +0200, Mojca Miklavec
mojca.miklavec.li...@gmail.com wrote:

 For Solaris Sparc we have nobody to compile the binaries at the moment.
I also have a Sparc server but I cannot remote access it from my location now.
But I feel no need to run context on the Sparc.

 The person who asked us for adding Solaris x86 support is not
 using Solaris any more, in last month there was no single Solaris user
 downloading the minimals and after Oracle overtake, I have been
 seriously considering removing support for solaris.
 
 However, if there is demand for it, we can keep it.
OK. If I'm the only user it's not that important to make it run just for me.

 The question is: is these because there's LuaTeX beta-0.61.0 instead
 of the latest LuaTeX available or is it because my virtual machine
 (OpenSolaris whatever-version-has-been-available-two-months-ago) and
 your server incompatible in some sense? I suspect that it is the
 second.
 
 If you are willing to help us debug, I can try to send you unstripped
 binary.
I will help as much as I can. I did some investigation. The results:

I cannot execute the provided binaries, maybe you're right and the systems are
incompatible. I downloaded the luatex trunk and compiled the source. I can
successfully execute the compiled binary. After having a look at the
first-setup.sh script I performed the mtxrun ... line. As expected it failed
(as I cannot execute the binaries). I replaced the luatex binary with the
fresh compiled one and checked the other programs. Result: I can execute all
binaries exept luatex and pdftex. Since I only use MkIV this should not be a
problem.

So I made the formats and compiled my test document. MkIV works (including
metapost).

So finally I can get a running system by myself. I will write my own
»first-setup.sh« to update my system.

- To update the system I can use the following command, right?
  mtxrun --verbose --script ./bin/mtx-update.lua --force --engine=luatex
  --texroot=$PWD/tex --extras=all

- After replacing the »buggy« luatex I make the formats using:
  mtxrun --verbose --script ./bin/mtx-update.lua --make --force
  --engine=luatex --texroot=$PWD/tex

Please correct me if I use the wrong arguments. I don't really understand the
use of all the options.

How can I check the luatex version used in the minimals? Maybe it is saved
in some text file. Background: If the luatex version changes my script needs
to fetch the new trunk, compile and replace the »buggy or incompatible«
binary. Simply getting the binary and execute --version triggers the error
mentioned before.

Thanks for your help. If I can do anything (send binaries, etc.) let me know.

best regards
Marco


___
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
___


[NTG-context] intertext is broken

2010-09-17 Thread Andreas Harder
Hi all,

the intertext-environment seems to be brkoken (at leas in MkIV).

\starttext
\startformula
  \startalign
\NC ab+cd \NC= ab+cd \NR
\startintertext
  test
\stopintertext
\NC a + a \NC= 2a   \NR
  \stopalign
\stopformula
\stoptext

Greeting
Andreas
___
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
___


[NTG-context] installing minimals

2010-09-17 Thread Charles Doherty
Dear all, 

I had installed minimals in a folder 'context' in my home directory. I am using 
a Macbook 10.6.4. I have been using MarkIV successfully for a number of months. 
I recently decided to update but I get the result below. I followed the 
instructions on Contextgarden as before in the ConTeXt Minimals page. I finally 
trashed the folder and did everything from scratch. I use TeXshop as my editor. 
I would be very grateful if anyone could give me the steps to get ConTeXt 
Minimals working again on my Mac.

Thanks,
Charlie

TeXExec | processing document 'Purser.tex'
TeXExec | no ctx file found
TeXExec | tex processing method: context
TeXExec | TeX run 1
TeXExec | writing option file Purser.top
TeXExec | using randomseed 519
TeXExec | tex engine: luatex
TeXExec | tex format: cont-en

MTXrun | using format name: 
/Users/charlesdoherty/context/tex/texmf-cache/luatex-cache/context/e580c8be7dcf42f3c6968188a08f16d6/formats/cont-en.fmt
MTXrun | no luc/lua with name: cont-en
TeXUtil | parsing file Purser.tui
TeXUtil | shortcuts : 0
TeXUtil | expansions: 0
TeXUtil | reductions: 0
TeXUtil | divisions : 0
TeXUtil | loaded files: 0
TeXUtil | temporary files: 0
TeXUtil | commands: 0
TeXUtil | programs: 0
TeXUtil | tuo file saved
TeXExec | runtime: 0.132344___
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
___


Re: [NTG-context] Minimals fail to install on SunOS x86

2010-09-17 Thread Mojca Miklavec
Dear Marco,

(I'm CC-ing Apostolos who compile Solaris binaries for TeX Live.)

On Fri, Sep 17, 2010 at 15:59, Marco  wrote:
 On Fri, 17 Sep 2010 10:54:26 +0200, Mojca Miklavec wrote:

 For Solaris Sparc we have nobody to compile the binaries at the moment.
 I also have a Sparc server but I cannot remote access it from my location now.
 But I feel no need to run context on the Sparc.

 The person who asked us for adding Solaris x86 support is not
 using Solaris any more, in last month there was no single Solaris user
 downloading the minimals and after Oracle overtake, I have been
 seriously considering removing support for solaris.

 However, if there is demand for it, we can keep it.
 OK. If I'm the only user it's not that important to make it run just for me.

It means no extra work for us as long as someone is using it and as
long as someone keeps compiling LuaTeX when a new version comes out,
else ConTeXt stops working.

That someone could theoretically be me, but if my binaries don't work
on other machines, it makes no sense for me to compile the binaries,
so that someone would probably have to be you.

 The question is: is these because there's LuaTeX beta-0.61.0 instead
 of the latest LuaTeX available or is it because my virtual machine
 (OpenSolaris whatever-version-has-been-available-two-months-ago) and
 your server incompatible in some sense? I suspect that it is the
 second.

 If you are willing to help us debug, I can try to send you unstripped
 binary.
 I will help as much as I can. I did some investigation. The results:

 I cannot execute the provided binaries, maybe you're right and the systems are
 incompatible. I downloaded the luatex trunk and compiled the source. I can
 successfully execute the compiled binary.

Can you please send me the binaries (or at least the LuaTeX one)
off-list (or if you could upload it to some place, so that I could
download it from there), so that I can test if your binaries work on
my virtual machine? If nothing else out of pure curiosity.

 After having a look at the
 first-setup.sh script I performed the mtxrun ... line. As expected it failed
 (as I cannot execute the binaries). I replaced the luatex binary with the
 fresh compiled one and checked the other programs. Result: I can execute all
 binaries exept luatex and pdftex. Since I only use MkIV this should not be a
 problem.

 So I made the formats and compiled my test document. MkIV works (including
 metapost).

 So finally I can get a running system by myself. I will write my own
 »first-setup.sh« to update my system.

Just a remark: the way to install minimals is soon going to change a
bit (I won't delete the old scripts straight away, but I will try to
change a few aspects of installation).

 - To update the system I can use the following command, right?
  mtxrun --verbose --script ./bin/mtx-update.lua --force --engine=luatex
  --texroot=$PWD/tex --extras=all

 - After replacing the »buggy« luatex I make the formats using:
  mtxrun --verbose --script ./bin/mtx-update.lua --make --force
  --engine=luatex --texroot=$PWD/tex

 Please correct me if I use the wrong arguments. I don't really understand the
 use of all the options.

That is fine. But as long as the old luatex resides on computer, you
should better not use the --make switch

 How can I check the luatex version used in the minimals?

It's 0.61. At the moment you can see
http://minimals.contextgarden.net/current/bin/solaris-intel/luatex/
but that might change.

Btw.: does TeX Live 2010 work OK on your server? (It would be helpful
to know. ConTeXt should work OK there.)

 Maybe it is saved
 in some text file. Background: If the luatex version changes my script needs
 to fetch the new trunk, compile and replace the »buggy or incompatible«
 binary. Simply getting the binary and execute --version triggers the error
 mentioned before.

We should just get a working version to the server and then you would
not need any special hacks.

 Thanks for your help. If I can do anything (send binaries, etc.) let me know.

I would be grateful for the binaries and specification of your server.

Mojca
___
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
___


[NTG-context] grid typesetting with Mark IV

2010-09-17 Thread sebastien-listes
Hi,

I don't get the expected result when I compile the following code with
context minimal (ConTeXt  ver: 2010.09.14 23:27 MKIV).

With mk II (ConTeXt  ver: 2010.09.14 23:27 MKII) it's ok -- lines are
well aligned on the grid.

Any clue?

Here's the code:

\setuplayout[grid=yes,marking=on]
\showgrid
\showframe

\setuphead[chapter][%
  before={\blank[force,2*line]},
  after={\blank[1*line]}]

\starttext

\chapter{test}

\input tufte

\stoptext

PS : thanks for the nice pics and slides of the context meeting!

PS II : to Idris, I'd be *very* happy to contribute to a translation
of your forthcoming book into french.
-- 
Sébastien Mengin
Édition et logiciels libres
 Mise en page avec LaTeX 
http://edilibre.net
tél. : 06 84 88 49 17
jid. : sebastien-men...@jabber.org

___
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
___


Re: [NTG-context] installing minimals

2010-09-17 Thread Mojca Miklavec
On Fri, Sep 17, 2010 at 17:49, Charles Doherty
charles.dohe...@upcmail.ie wrote:
 Dear all,
 I had installed minimals in a folder 'context' in my home directory. I am
 using a Macbook 10.6.4. I have been using MarkIV successfully for a number
 of months. I recently decided to update but I get the result below. I
 followed the instructions on Contextgarden as before in the ConTeXt Minimals
 page. I finally trashed the folder and did everything from scratch. I use
 TeXshop as my editor. I would be very grateful if anyone could give me the
 steps to get ConTeXt Minimals working again on my Mac.

Dear Charles,

I'm not sure about what could go wrong. Which instructions exactly
were you following and at what point exactly does the problem appear?

Mojca
___
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
___


Re: [NTG-context] Small bug in current beta (references)

2010-09-17 Thread Mari Voipio
OK, we figured the problem is related to the fact that I'm doing
something so unusual as using a prefix to got with the references,
i.e. when I refer to something in a different chapter, there's first
the chapter reference, then a + and then the pointer to the reference.

For example the chapter is \chapter[ethernet]{ethernet} and when I
refer to a figure in that chapter, the reference goes
\in{figure}[ethernet:fig:fiber connection] (the figure reference being
fig:fiber connection).


In MKII this works fine. In MKIV it doesn't work at all, I get
question marks at all references that go to the other chapters, only
chapter-internal (i.e. non-prefixed) references work.

So good news is that ConTeXt doesn't hang on the references any more,
so I can tweak other stuff. Bad news is that my user manuals are full
of question marks...



Mari
___
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
___


Re: [NTG-context] [xits] \sqrt not work properly

2010-09-17 Thread views63
Hi Hongwen Qiu,

It was the same others opentype math fonts

example:
\usetypescript[cambria]
\switchtobodyfont[cambria,10pt]
\starttext
\startformula
\sqrt{abcde}
\stopformula
\stoptext

\usetypescript[euler]
\switchtobodyfont[euler,10pt]
\starttext
\startformula
\sqrt{abcde}
\stopformula
\stoptext

\starttypescript [math] [asana] [name]
\definefontsynonym [MathRoman] [name:Asana-Math][features=math\mathsizesuffix]
\stoptypescript
\switchtobodyfont[asana,10pt]
\starttext
\startformula
\sqrt{abcde}
\stopformula
\stoptext

--
Best regards,

Ze

在 2010年9月14日 上午11:35,Hongwen Qiu qiuhong...@gmail.com 写道:
  The \sqrt is not work properly in Mkiv. The following is the minimal
 example, and the result is attached
 \setupbodyfont[xits]
 \starttext
 \startformula
 \sqrt{abcde}
 \stopformula
 \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  : http://foundry.supelec.fr/projects/contextrev/
 wiki     : http://contextgarden.net
 ___


___
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
___