[NTG-context] Re: Bold TeX Gyre Pagella Math results in Math error: parameter 'subshiftdown' with id 48 in style 2 is not set

2023-12-01 Thread Marco Patzer
On Fri, 1 Dec 2023 15:09:32 +0100
Wolfgang Schuster  wrote:

> You get the same error with Latin Modern as soon as you use a non 
> predefined font size in combination with bold math.

True, thanks for pointing that out. I wasn't aware and frankly,
that's rather unexpected behaviour.

So to put it all together, this now works for me:

\definefontfamily [mainface] [rm] [TeX Gyre Pagella]
\definefontfamily [mainface] [ss] [TeX Gyre Heros]

\starttypescript [math] [default] [size]
  \definebodyfont [8.5pt] [mm] [default]
\stoptypescript

\definetypeface [mainface] [mm] [math] [pagella]

\setupbodyfont [mainface, 8.5pt]

\starttext
  \math{V_y}
  \bold{\math{V_y}}
\stoptext

Thank you for your replies.

Marco
___
If your question is of interest to others as well, please add an entry to the 
Wiki!

maillist : ntg-context@ntg.nl / 
https://mailman.ntg.nl/mailman3/lists/ntg-context.ntg.nl
webpage  : https://www.pragma-ade.nl / https://context.aanhet.net (mirror)
archive  : https://github.com/contextgarden/context
wiki : https://wiki.contextgarden.net
___


[NTG-context] Re: Bold TeX Gyre Pagella Math results in Math error: parameter 'subshiftdown' with id 48 in style 2 is not set

2023-12-01 Thread Wolfgang Schuster

Marco Patzer schrieb am 30.11.2023 um 22:23:

On Thu, 30 Nov 2023 20:51:42 +0100
Wolfgang Schuster  wrote:


Use the \definetypeface command to load the math font. Math fonts
always use special
settings or load additional settings which are missing when you use
\definefontfamily.

\definetypeface [mainface] [mm] [math] [pagella]

\definetypeface generates the same error message if the font size is
changed:

\definefontfamily [mainface] [rm] [TeX Gyre Pagella]
\definefontfamily [mainface] [ss] [TeX Gyre Heros]

\definetypeface [mainface] [mm] [math] [pagella]

%% 8pt works
\setupbodyfont [mainface, 8.5pt]

\starttext
   \bold{\math{x_y}}
\stoptext


You get the same error with Latin Modern as soon as you use a non 
predefined font size in combination with bold math.


 begin example
% \starttypescript [math] [default] [size]
%   \definebodyfont [8.5pt] [mm] [default]
% \stoptypescript

\setupbodyfont[8.5pt]

\starttext

\im{x_y}

\mb\im{x_y}

\stoptext
 end example

Wolfgang

___
If your question is of interest to others as well, please add an entry to the 
Wiki!

maillist : ntg-context@ntg.nl / 
https://mailman.ntg.nl/mailman3/lists/ntg-context.ntg.nl
webpage  : https://www.pragma-ade.nl / https://context.aanhet.net (mirror)
archive  : https://github.com/contextgarden/context
wiki : https://wiki.contextgarden.net
___


[NTG-context] Re: Bold TeX Gyre Pagella Math results in Math error: parameter 'subshiftdown' with id 48 in style 2 is not set

2023-11-30 Thread Marco Patzer
On Thu, 30 Nov 2023 20:51:42 +0100
Wolfgang Schuster  wrote:

> Use the \definetypeface command to load the math font. Math fonts
> always use special
> settings or load additional settings which are missing when you use 
> \definefontfamily.
> 
> \definetypeface [mainface] [mm] [math] [pagella]

\definetypeface generates the same error message if the font size is
changed:

\definefontfamily [mainface] [rm] [TeX Gyre Pagella]
\definefontfamily [mainface] [ss] [TeX Gyre Heros]

\definetypeface [mainface] [mm] [math] [pagella]

%% 8pt works
\setupbodyfont [mainface, 8.5pt]

\starttext
  \bold{\math{x_y}}
\stoptext

Marco
___
If your question is of interest to others as well, please add an entry to the 
Wiki!

maillist : ntg-context@ntg.nl / 
https://mailman.ntg.nl/mailman3/lists/ntg-context.ntg.nl
webpage  : https://www.pragma-ade.nl / https://context.aanhet.net (mirror)
archive  : https://github.com/contextgarden/context
wiki : https://wiki.contextgarden.net
___


[NTG-context] Re: Bold TeX Gyre Pagella Math results in Math error: parameter 'subshiftdown' with id 48 in style 2 is not set

2023-11-30 Thread Marco Patzer
On Thu, 30 Nov 2023 20:51:42 +0100
Wolfgang Schuster  wrote:

> > %% comment/remove this line and it works
> > \definefontfamily [mainface] [mm] [TeX Gyre Pagella Math]  
> 
> Use the \definetypeface command to load the math font.

That example was taken straight from

  https://wiki.contextgarden.net/Command/definefontfamily

So that should better read like this: ?

  \definefontfamily [mainface] [rm][TeX Gyre Pagella]
  \definefontfamily [mainface] [ss][TeX Gyre Heros]
  \definetypeface   [mainface] [mm] [math] [pagella]

  \setupbodyfont[mainface]

Should I correct the wiki then?

> Math fonts always use special settings or load additional settings
> which are missing when you use 
> \definefontfamily.
> 
> \definetypeface [mainface] [mm] [math] [pagella]

That works, thanks. However, I discovered that:

%% fails
\definefontfamily [mainface] [mm] [TeX Gyre Pagella Math]

%% works
\definefontfamily [mainface] [mm] [pagella]

So even with \definefontfamily it works, when “TeX Gyre Pagella
Math” is changed to “pagella”. That I do not understand.

Marco
___
If your question is of interest to others as well, please add an entry to the 
Wiki!

maillist : ntg-context@ntg.nl / 
https://mailman.ntg.nl/mailman3/lists/ntg-context.ntg.nl
webpage  : https://www.pragma-ade.nl / https://context.aanhet.net (mirror)
archive  : https://github.com/contextgarden/context
wiki : https://wiki.contextgarden.net
___


[NTG-context] Re: Bold TeX Gyre Pagella Math results in Math error: parameter 'subshiftdown' with id 48 in style 2 is not set

2023-11-30 Thread Wolfgang Schuster

Marco Patzer schrieb am 30.11.2023 um 20:43:

Hi!

I have a strange issue when TeX Gyre Pagella Math is used together
with bold text. MWE:

\definefontfamily [mainface] [rm] [TeX Gyre Pagella]
\definefontfamily [mainface] [ss] [TeX Gyre Heros]

%% comment/remove this line and it works
\definefontfamily [mainface] [mm] [TeX Gyre Pagella Math]


Use the \definetypeface command to load the math font. Math fonts always 
use special
settings or load additional settings which are missing when you use 
\definefontfamily.


\definetypeface [mainface] [mm] [math] [pagella]

Wolfgang

___
If your question is of interest to others as well, please add an entry to the 
Wiki!

maillist : ntg-context@ntg.nl / 
https://mailman.ntg.nl/mailman3/lists/ntg-context.ntg.nl
webpage  : https://www.pragma-ade.nl / https://context.aanhet.net (mirror)
archive  : https://github.com/contextgarden/context
wiki : https://wiki.contextgarden.net
___