Dear list members,
I have been running ConTeXt on a Mac for a number of years.
I just installed ConTeXt LMTX on a new Windows machine following instructions from the Pragma-ADE website.
When I process the below MWE on the Windows machine the formulas are not displayed in the correct font.
The log file shows the following
fonts > math: unset for global bodyfont mainface at 9pt
mkiv lua stats > loaded fonts: 4 files: texgyretermes-math.otf, dejavusans.ttf, dejavusansmono.ttf, dejavuserif.ttf
mkiv lua stats > font embedding time: 0.025 seconds, 3 fonts
Full log file attached.
I tried the below without success.
context --generate
context --make
mtxrun --script font –reload
mtxrun --script font --reload --force
Regards,
Jan Willem Flamma
===
\definefontfamily [mainface] [serif] [DejaVu Serif]
\definefontfamily [mainface] [sans] [DejaVu Sans]
\definefontfamily [mainface] [mono] [DejaVu Sans Mono] [feature=none]
\definefontfamily [mainface] [math] [TeX Gyre Termes Math] [scale=1.1]
\setupbodyfont[mainface,sans,9pt]
\starttext
{\rm
\input ward
1 2 3 4 5 6 7 8 9 10}
\blank[big]
{\ss
\input ward
1 2 3 4 5 6 7 8 9 10}
\blank[big]
{\tt
\input ward
1 2 3 4 5 6 7 8 9 10}
\blank[big]
\m{\sin^2(t)^2 + \cos^2(t) = 1}
\blank[big]
\startformula
\sin^2(t)^2 + \cos^2(t) = 1
\stopformula
\stoptext