I can run context, but some otf fonts can't be find, like the nice linuxlibertine, for exemple (context used to find it with xetex).
Can you use the TeX-Gyre Fonts, try the following example
All the tex-gyre run well.
% engine=luatex
\usetypescript[palatino] \setupbodyfont[palatino]
\starttext Hello Text! \stoptext
If this did work send your typescript for the linux libertine fonts.
Yes, it work. What do you mean by « typescript » ? For calling linux libertine, I tried this : \definefontsynonym [LinLibertine] [LinLibertineC_Re] \definedfont [LinLibertine at 12pt] and this : \definefontsynonym [LinLibertine] [name:LinLibertineO]
file:filename should normally work
\definedfont [LinLibertine at 12pt] nothing work.
I get the name with otfinfo -i I don't creat a special file for using LinLibertine… but other fonts like the free Tally[1] run well. Sorry but fonts use are still strange for me…
If I understand well, if mtxrun can't build a « database » with my fonts, names can't work ?
Can't test this at the moment with the font names but you could try my typescripts with the filenames. \starttypescript [serif] [linuxlibertine] \setups[font:fallback:serif] \definefontsynonym [Serif] [LinLibertine-Regular] \definefontsynonym [SerifBold] [LinLibertine-Bold] \definefontsynonym [SerifItalic] [LinLibertine-Italic] \definefontsynonym [SerifBoldItalic] [LinLibertine-BoldItalic] \definefontsynonym [SerifCaps] [LinLibertine-Caps] \stoptypescript \starttypescript [serif] [linuxlibertine] \definefontsynonym [LinLibertine-Regular] [file:LinLibertine_Re-2.7.9.9] [features=default] \definefontsynonym [LinLibertine-Bold] [file:LinLibertine_Bd-2.7.8] [features=default] \definefontsynonym [LinLibertine-Italic] [file:LinLibertine_It-2.7.8] [features=default] \definefontsynonym [LinLibertine-BoldItalic] [file:LinLibertine_BI-2.7.2] [features=default] \definefontsynonym [LinLibertine-Caps] [file:LinLibertineC_Re-2.7.3] [features=default] \stoptypescript \starttypescript [linuxlibertine] \definetypeface [\typescriptone] [rm] [serif] [linuxlibertine] [default] \stoptypescript \usetypescript[linuxlibertine] \setupbodyfont[linuxlibertine] \starttext Text in Linux Libertine. \stoptext Greetings Wolfgang