ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* upload / some new math stuff
@ 2021-06-10 21:35 Hans Hagen
  2021-06-11  7:54 ` Mikael Sundqvist
                   ` (2 more replies)
  0 siblings, 3 replies; 7+ messages in thread
From: Hans Hagen @ 2021-06-10 21:35 UTC (permalink / raw)
  To: mailing list for ConTeXt users

Hi,

I played a bit with these newcomputermodern fonts. They are extended 
versions of latin modern and come in:

- 10pt (serif, sane, mono, math)
- book (serif, sane, mono, math)
-  8pt (partial)

I made a typescript for the 10pt regular and book (as I see no reason to 
configure 8pt).  So, assuming that one installs these fonts:

\setupbodyfont[newcomputermodern-book]
\setupbodyfont[newcomputermodern]

should work ok. The book variant is quite nice. I didn't look into the 
provided math alternates (context supports that but I didn't define them 
for this font ... input from math lovers is welcome).

Now, this font also implements, as cambria does, upright integrals and 
as that has comes on my radar every year when I ponder these integrals I 
decided that it was about tiem to deal with it properly. It is no big 
deal to implement them gropwing (after all one can see them as left 
delimiter) but the main issue are these super and subscripts.

\setupbodyfont[newcomputermodern-book]
% \setupbodyfont[cambria]

\starttext

\startformula
     x = \integral^1_2 \mathinner{\vrule height 10mm depth 10mm width 5mm} =
     x = \integral^1_2 \mathinner{\vrule height 20mm depth 20mm width 5mm} =
     x = \integral^1_2 \mathinner{\vrule height 30mm depth 30mm width 5mm} =
     x = \integral^1_2 \mathinner{x} =
     x = \integral^1_2 x
\stopformula

\startformula
     x = \int\Umathadaptsize^1_2 \mathinner{\vrule height 10mm depth 
10mm width 5mm} =
     x = \int\Umathadaptsize^1_2 \mathinner{\vrule height 20mm depth 
20mm width 5mm} =
     x = \int\Umathadaptsize^1_2 \mathinner{\vrule height 30mm depth 
30mm width 5mm} =
     x = \int\Umathadaptsize^1_2 \mathinner{x} =
     x = \int\Umathadaptsize^1_2 x
\stopformula

\def\rab{\Umathchar"1"00"007C }

$
     x = \int\Umathadaptsize^1_2 \mathinner{\vrule height 10mm depth 
10mm width 5mm} =
     x = \int\Umathadaptsize^1_2 \mathinner{\vrule height 20mm depth 
20mm width 5mm} =
     x = \int\Umathadaptsize^1_2 \mathinner{\vrule height 30mm depth 
30mm width 5mm} =
     x = \int\Umathadaptsize^1_2 x =
     x = \rab\Umathadaptsize^1_2^^1__2 \mathinner{\vrule height 30mm 
depth 30mm width 5mm}
$

\stoptext

After playing with several solutions (delimiters, fences, radicals etc) 
I just settled for a few line extension to the engine (there was already 
plenty in place in luametatex for that anyway) and it seem to work ok.

This \Umathadaptsize is a bit like the limits related suffixes (and uses 
the same scanner logic). It basically flags an operator as something 
that should grow cf what follows. I can add some fine tuning if needed 
(can also be dealt with at the macro end, as with other mechanisms, but 
this is just a first test of useability).

(I might also extend another mechanism to deal with it but putting 
scripts on top or after is already handles pretty well by regular 
mechanisms, so ...)

Of course only a few fonts provide these upright growing integrals 
(makes me wonder about summation and product).

Concerning the newcm fonts: for some reason the book variants (otf 
files) are about twice as large (in filesize) but what we use (cached) 
is the same size (only bboxes differ) so there is something fishy in the 
otf. I can imagine that at some point we add the 10pt/book ones to the 
standard mkiv distribution and maybe only the subset to the lmtx 
distribution but for now these book ones are too big for that, but it 
all depende on them being used.

Happy testing (hopefully there are no side effects).

Hans

-----------------------------------------------------------------
                                           Hans Hagen | PRAGMA ADE
               Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
        tel: 038 477 53 69 | www.pragma-ade.nl | www.pragma-pod.nl
-----------------------------------------------------------------
___________________________________________________________________________________
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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki     : http://contextgarden.net
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: upload / some new math stuff
  2021-06-10 21:35 upload / some new math stuff Hans Hagen
@ 2021-06-11  7:54 ` Mikael Sundqvist
  2021-06-11 10:23   ` Fabrice Couvreur
  2021-06-11 13:22 ` Alan Braslau
  2021-06-11 15:03 ` Pablo Rodriguez
  2 siblings, 1 reply; 7+ messages in thread
From: Mikael Sundqvist @ 2021-06-11  7:54 UTC (permalink / raw)
  To: mailing list for ConTeXt users

On Thu, Jun 10, 2021 at 11:35 PM Hans Hagen <j.hagen@xs4all.nl> wrote:
>
> Hi,
>
> I played a bit with these newcomputermodern fonts. They are extended
> versions of latin modern and come in:
>
> - 10pt (serif, sane, mono, math)
> - book (serif, sane, mono, math)
> -  8pt (partial)
>
> I made a typescript for the 10pt regular and book (as I see no reason to
> configure 8pt).  So, assuming that one installs these fonts:
>
> \setupbodyfont[newcomputermodern-book]
> \setupbodyfont[newcomputermodern]
>
> should work ok. The book variant is quite nice. I didn't look into the
> provided math alternates (context supports that but I didn't define them
> for this font ... input from math lovers is welcome).
>
> Now, this font also implements, as cambria does, upright integrals and
> as that has comes on my radar every year when I ponder these integrals I
> decided that it was about tiem to deal with it properly. It is no big
> deal to implement them gropwing (after all one can see them as left
> delimiter) but the main issue are these super and subscripts.
>
> \setupbodyfont[newcomputermodern-book]
> % \setupbodyfont[cambria]
>
> \starttext
>
> \startformula
>      x = \integral^1_2 \mathinner{\vrule height 10mm depth 10mm width 5mm} =
>      x = \integral^1_2 \mathinner{\vrule height 20mm depth 20mm width 5mm} =
>      x = \integral^1_2 \mathinner{\vrule height 30mm depth 30mm width 5mm} =
>      x = \integral^1_2 \mathinner{x} =
>      x = \integral^1_2 x
> \stopformula
>
> \startformula
>      x = \int\Umathadaptsize^1_2 \mathinner{\vrule height 10mm depth
> 10mm width 5mm} =
>      x = \int\Umathadaptsize^1_2 \mathinner{\vrule height 20mm depth
> 20mm width 5mm} =
>      x = \int\Umathadaptsize^1_2 \mathinner{\vrule height 30mm depth
> 30mm width 5mm} =
>      x = \int\Umathadaptsize^1_2 \mathinner{x} =
>      x = \int\Umathadaptsize^1_2 x
> \stopformula
>
> \def\rab{\Umathchar"1"00"007C }
>
> $
>      x = \int\Umathadaptsize^1_2 \mathinner{\vrule height 10mm depth
> 10mm width 5mm} =
>      x = \int\Umathadaptsize^1_2 \mathinner{\vrule height 20mm depth
> 20mm width 5mm} =
>      x = \int\Umathadaptsize^1_2 \mathinner{\vrule height 30mm depth
> 30mm width 5mm} =
>      x = \int\Umathadaptsize^1_2 x =
>      x = \rab\Umathadaptsize^1_2^^1__2 \mathinner{\vrule height 30mm
> depth 30mm width 5mm}
> $
>
> \stoptext
>
> After playing with several solutions (delimiters, fences, radicals etc)
> I just settled for a few line extension to the engine (there was already
> plenty in place in luametatex for that anyway) and it seem to work ok.
>
> This \Umathadaptsize is a bit like the limits related suffixes (and uses
> the same scanner logic). It basically flags an operator as something
> that should grow cf what follows. I can add some fine tuning if needed
> (can also be dealt with at the macro end, as with other mechanisms, but
> this is just a first test of useability).
>
> (I might also extend another mechanism to deal with it but putting
> scripts on top or after is already handles pretty well by regular
> mechanisms, so ...)
>
> Of course only a few fonts provide these upright growing integrals
> (makes me wonder about summation and product).
>
> Concerning the newcm fonts: for some reason the book variants (otf
> files) are about twice as large (in filesize) but what we use (cached)
> is the same size (only bboxes differ) so there is something fishy in the
> otf. I can imagine that at some point we add the 10pt/book ones to the
> standard mkiv distribution and maybe only the subset to the lmtx
> distribution but for now these book ones are too big for that, but it
> all depende on them being used.
>
> Happy testing (hopefully there are no side effects).
>
> Hans
>

Hi!

The book version looks nice, indeed! (I am one of those who still use
the MetaFont version of computer modern (in LaTeX), with some
parameters set so that it becomes less thin. Looks very nice when
printed. I guess this book version will also look better, and replace
the MetaFont setup!)

Is there an option available to always get upright integrals?

/Mikael
___________________________________________________________________________________
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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki     : http://contextgarden.net
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: upload / some new math stuff
  2021-06-11  7:54 ` Mikael Sundqvist
@ 2021-06-11 10:23   ` Fabrice Couvreur
  2021-06-11 11:05     ` Hans Hagen
  0 siblings, 1 reply; 7+ messages in thread
From: Fabrice Couvreur @ 2021-06-11 10:23 UTC (permalink / raw)
  To: mailing list for ConTeXt users


[-- Attachment #1.1: Type: text/plain, Size: 10164 bytes --]

Hi Hans,
I am not a font specialist and I use pagella and modern.
I'm curious so I installed this new font in
/home/viserion/LMTX/tex/texmf/fonts/opentype/public/newcomputermodern
I tested your file and I get the following message
Thank you Fabrice

Running `lmtx' on `hans-33' with
``/home/viserion/LMTX/tex/texmf-linux-64/bin/mtxrun --autogenerate --script
context --autopdf --purgeall hans-33''

resolvers       | formats | executing runner 'run luametatex format':
/home/viserion/LMTX/tex/texmf-linux-64/bin/luametatex --jobname="hans-33"
--fmt=/home/viserion/LMTX/tex/texmf-cache/luatex-cache/context/5fe67e0bfe781ce0dde776fb1556f32e/formats/luametatex/cont-en.fmt
--lua=/home/viserion/LMTX/tex/texmf-cache/luatex-cache/context/5fe67e0bfe781ce0dde776fb1556f32e/formats/luametatex/cont-en.lui
 --c:autopdf --c:currentrun=1 --c:fulljobname="./hans-33"
--c:input="./hans-33" --c:kindofrun=1 --c:maxnofruns=9 --c:purgeall
--c:texmfbinpath="/home/viserion/LMTX/tex/texmf-linux-64/bin"
fonts           > beware: no fonts are loaded yet, using 'lm mono' in box
system          >
system          > ConTeXt  ver: 2021.06.10 23:13 LMTX  fmt: 2021.6.11  int:
english/english
system          >
system          > 'cont-new.mkxl' loaded
open source     > level 1, order 1, name
'/home/viserion/LMTX/tex/texmf-context/tex/context/base/mkxl/cont-new.mkxl'
system          > beware: some patches loaded from cont-new.mkiv
close source    > level 1, order 1, name
'/home/viserion/LMTX/tex/texmf-context/tex/context/base/mkxl/cont-new.mkxl'
system          > files > jobname 'hans-33', input './hans-33', result
'hans-33'
fonts           > latin modern fonts are not preloaded
languages       > language 'en' is active
open source     > level 1, order 2, name './hans-33.tex'
open source     > level 2, order 3, name
'/home/viserion/LMTX/tex/texmf-context/tex/context/fonts/mkiv/type-imp-newcomputermodern.mkiv'
close source    > level 2, order 3, name
'/home/viserion/LMTX/tex/texmf-context/tex/context/fonts/mkiv/type-imp-newcomputermodern.mkiv'
fonts           > defining > forced type 'otf' of 'newcm10-regular' not
found
fonts           > defining > unable to define 'newcm10-regular.otf' as
'newcomputermodern-12pt-rm-tf-0--0'
fonts           > defining > font with asked name 'newcmmath-regular' is
not found using lookup 'file'
fonts           > defining > unable to define 'newcmmath-regular' as
'newcomputermodern-12pt-mm-mr--3'
fonts           > defining > unable to define 'newcmmath-regular' as
'newcomputermodern-12pt-mm-mr--2'
fonts           > defining > unable to define 'newcmmath-regular' as
'newcomputermodern-12pt-mm-mr--1'
fonts           > defining > unable to define 'newcmmath-regular' as
'newcomputermodern-12pt-mm-mb--3'
fonts           > defining > unable to define 'newcmmath-regular' as
'newcomputermodern-12pt-mm-mb--2'
fonts           > defining > unable to define 'newcmmath-regular' as
'newcomputermodern-12pt-mm-mb--1'
tex error       > tex error on line 12 in file ./hans-33.tex: Math error:
parameter 'quad' in style 0 is not set

<macro> \p_distance \endgroup \stopimath

<macro> \p_distance \stopforceddisplaymath
    \egroup \d_strc_math_number_width \wd \b_strc_formulas_number \ifcase
\mathnumberstatus \setfalse \c_strc_math_has_number \or \ifzeropt
\d_strc_math_number_width \setfalse \c_strc_math_has_number \else \settrue
\c_strc_math_has
<macro> \p_distance \endgroup \ifcase \c_strc_formulas_mode
\Ucheckedstopdisplaymath \or \normalUstopmath \egroup
\strc_formulas_flush_content_and_number \else \expandafter \stopinnermath
\fi
    \afterdisplayspace \egroup

<macro> \p_distance \strc_formulas_place_number \strc_formulas_flush_number
\dostarttagged \t!formulacontent \empty \dotagregisterformula
\c_strc_formulas_n \csname \e!stop \formulaparameter \c!alternative
\v!formula \endcsname
    \dostoptagged \dostoptagged \nonoindentati

<line 3.12> \stopformula

 2     % \setupbodyfont[cambria]
 3
 4     \starttext
 5
 6     \startformula
 7          x = \integral^1_2 \mathinner{\vrule height 10mm depth 10mm
width 5mm} =
 8          x = \integral^1_2 \mathinner{\vrule height 20mm depth 20mm
width 5mm} =
 9          x = \integral^1_2 \mathinner{\vrule height 30mm depth 30mm
width 5mm} =
10          x = \integral^1_2 \mathinner{x} =
11          x = \integral^1_2 x
12 >>  \stopformula
13
14     \startformula
15          x = \int\Umathadaptsize^1_2 \mathinner{\vrule height 10mm depth
16     10mm width 5mm} =
17          x = \int\Umathadaptsize^1_2 \mathinner{\vrule height 20mm depth
18     20mm width 5mm} =
19          x = \int\Umathadaptsize^1_2 \mathinner{\vrule height 30mm depth
20     30mm width 5mm} =
21          x = \int\Umathadaptsize^1_2 \mathinner{x} =
22          x = \int\Umathadaptsize^1_2 x
Sorry, but I can't typeset math unless various parameters have been set.
This is
normally done by loading special math fonts into the math family slots.
Your font
set is lacking at least the parameter mentioned earlier.
mtx-context     | fatal error: return code: 256

Le ven. 11 juin 2021 à 09:55, Mikael Sundqvist <mickep@gmail.com> a écrit :

> On Thu, Jun 10, 2021 at 11:35 PM Hans Hagen <j.hagen@xs4all.nl> wrote:
> >
> > Hi,
> >
> > I played a bit with these newcomputermodern fonts. They are extended
> > versions of latin modern and come in:
> >
> > - 10pt (serif, sane, mono, math)
> > - book (serif, sane, mono, math)
> > -  8pt (partial)
> >
> > I made a typescript for the 10pt regular and book (as I see no reason to
> > configure 8pt).  So, assuming that one installs these fonts:
> >
> > \setupbodyfont[newcomputermodern-book]
> > \setupbodyfont[newcomputermodern]
> >
> > should work ok. The book variant is quite nice. I didn't look into the
> > provided math alternates (context supports that but I didn't define them
> > for this font ... input from math lovers is welcome).
> >
> > Now, this font also implements, as cambria does, upright integrals and
> > as that has comes on my radar every year when I ponder these integrals I
> > decided that it was about tiem to deal with it properly. It is no big
> > deal to implement them gropwing (after all one can see them as left
> > delimiter) but the main issue are these super and subscripts.
> >
> > \setupbodyfont[newcomputermodern-book]
> > % \setupbodyfont[cambria]
> >
> > \starttext
> >
> > \startformula
> >      x = \integral^1_2 \mathinner{\vrule height 10mm depth 10mm width
> 5mm} =
> >      x = \integral^1_2 \mathinner{\vrule height 20mm depth 20mm width
> 5mm} =
> >      x = \integral^1_2 \mathinner{\vrule height 30mm depth 30mm width
> 5mm} =
> >      x = \integral^1_2 \mathinner{x} =
> >      x = \integral^1_2 x
> > \stopformula
> >
> > \startformula
> >      x = \int\Umathadaptsize^1_2 \mathinner{\vrule height 10mm depth
> > 10mm width 5mm} =
> >      x = \int\Umathadaptsize^1_2 \mathinner{\vrule height 20mm depth
> > 20mm width 5mm} =
> >      x = \int\Umathadaptsize^1_2 \mathinner{\vrule height 30mm depth
> > 30mm width 5mm} =
> >      x = \int\Umathadaptsize^1_2 \mathinner{x} =
> >      x = \int\Umathadaptsize^1_2 x
> > \stopformula
> >
> > \def\rab{\Umathchar"1"00"007C }
> >
> > $
> >      x = \int\Umathadaptsize^1_2 \mathinner{\vrule height 10mm depth
> > 10mm width 5mm} =
> >      x = \int\Umathadaptsize^1_2 \mathinner{\vrule height 20mm depth
> > 20mm width 5mm} =
> >      x = \int\Umathadaptsize^1_2 \mathinner{\vrule height 30mm depth
> > 30mm width 5mm} =
> >      x = \int\Umathadaptsize^1_2 x =
> >      x = \rab\Umathadaptsize^1_2^^1__2 \mathinner{\vrule height 30mm
> > depth 30mm width 5mm}
> > $
> >
> > \stoptext
> >
> > After playing with several solutions (delimiters, fences, radicals etc)
> > I just settled for a few line extension to the engine (there was already
> > plenty in place in luametatex for that anyway) and it seem to work ok.
> >
> > This \Umathadaptsize is a bit like the limits related suffixes (and uses
> > the same scanner logic). It basically flags an operator as something
> > that should grow cf what follows. I can add some fine tuning if needed
> > (can also be dealt with at the macro end, as with other mechanisms, but
> > this is just a first test of useability).
> >
> > (I might also extend another mechanism to deal with it but putting
> > scripts on top or after is already handles pretty well by regular
> > mechanisms, so ...)
> >
> > Of course only a few fonts provide these upright growing integrals
> > (makes me wonder about summation and product).
> >
> > Concerning the newcm fonts: for some reason the book variants (otf
> > files) are about twice as large (in filesize) but what we use (cached)
> > is the same size (only bboxes differ) so there is something fishy in the
> > otf. I can imagine that at some point we add the 10pt/book ones to the
> > standard mkiv distribution and maybe only the subset to the lmtx
> > distribution but for now these book ones are too big for that, but it
> > all depende on them being used.
> >
> > Happy testing (hopefully there are no side effects).
> >
> > Hans
> >
>
> Hi!
>
> The book version looks nice, indeed! (I am one of those who still use
> the MetaFont version of computer modern (in LaTeX), with some
> parameters set so that it becomes less thin. Looks very nice when
> printed. I guess this book version will also look better, and replace
> the MetaFont setup!)
>
> Is there an option available to always get upright integrals?
>
> /Mikael
>
> ___________________________________________________________________________________
> 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://context.aanhet.net
> archive  : https://bitbucket.org/phg/context-mirror/commits/
> wiki     : http://contextgarden.net
>
> ___________________________________________________________________________________
>

[-- Attachment #1.2: Type: text/html, Size: 13941 bytes --]

[-- Attachment #2: Type: text/plain, Size: 493 bytes --]

___________________________________________________________________________________
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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki     : http://contextgarden.net
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: upload / some new math stuff
  2021-06-11 10:23   ` Fabrice Couvreur
@ 2021-06-11 11:05     ` Hans Hagen
  0 siblings, 0 replies; 7+ messages in thread
From: Hans Hagen @ 2021-06-11 11:05 UTC (permalink / raw)
  To: mailing list for ConTeXt users, Fabrice Couvreur

On 6/11/2021 12:23 PM, Fabrice Couvreur wrote:
> Hi Hans,
> I am not a font specialist and I use pagella and modern.
> I'm curious so I installed this new font 
> in/home/viserion/LMTX/tex/texmf/fonts/opentype/public/newcomputermodern
> I tested your file and I get the following message
> 
> fonts           > defining > unable to define 'newcm10-regular.otf' as 
> 'newcomputermodern-12pt-rm-tf-0--0'
> fonts           > defining > font with asked name 'newcmmath-regular' is 
> not found using lookup 'file'
you forgot to:

mtxrun --generate


-----------------------------------------------------------------
                                           Hans Hagen | PRAGMA ADE
               Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
        tel: 038 477 53 69 | www.pragma-ade.nl | www.pragma-pod.nl
-----------------------------------------------------------------
___________________________________________________________________________________
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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki     : http://contextgarden.net
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: upload / some new math stuff
  2021-06-10 21:35 upload / some new math stuff Hans Hagen
  2021-06-11  7:54 ` Mikael Sundqvist
@ 2021-06-11 13:22 ` Alan Braslau
  2021-06-11 15:02   ` Hans Hagen
  2021-06-11 15:03 ` Pablo Rodriguez
  2 siblings, 1 reply; 7+ messages in thread
From: Alan Braslau @ 2021-06-11 13:22 UTC (permalink / raw)
  To: Hans Hagen; +Cc: mailing list for ConTeXt users

On Thu, 10 Jun 2021 23:35:14 +0200
Hans Hagen <j.hagen@xs4all.nl> wrote:

> So, assuming that one installs these fonts:

It looks modern (and new). Why not include it in the lmtx distribution?

Alan
___________________________________________________________________________________
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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki     : http://contextgarden.net
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: upload / some new math stuff
  2021-06-11 13:22 ` Alan Braslau
@ 2021-06-11 15:02   ` Hans Hagen
  0 siblings, 0 replies; 7+ messages in thread
From: Hans Hagen @ 2021-06-11 15:02 UTC (permalink / raw)
  To: Alan Braslau; +Cc: mailing list for ConTeXt users

On 6/11/2021 3:22 PM, Alan Braslau wrote:
> On Thu, 10 Jun 2021 23:35:14 +0200
> Hans Hagen <j.hagen@xs4all.nl> wrote:
> 
>> So, assuming that one installs these fonts:
> 
> It looks modern (and new). Why not include it in the lmtx distribution?
Indeed it looks ok. (Years ago I had a talk at bachotex showing slightly 
boldened modern so it is already possible in context with the normal lm 
fonts .. it's how we do full-bold math).

I might but wonder why the book files are so large (it would add 
significant to the currently small lmtx distribution so maybe wait till 
a next version .. i'd not include the 8 pt anyway).

Hans


-----------------------------------------------------------------
                                           Hans Hagen | PRAGMA ADE
               Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
        tel: 038 477 53 69 | www.pragma-ade.nl | www.pragma-pod.nl
-----------------------------------------------------------------
___________________________________________________________________________________
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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki     : http://contextgarden.net
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: upload / some new math stuff
  2021-06-10 21:35 upload / some new math stuff Hans Hagen
  2021-06-11  7:54 ` Mikael Sundqvist
  2021-06-11 13:22 ` Alan Braslau
@ 2021-06-11 15:03 ` Pablo Rodriguez
  2 siblings, 0 replies; 7+ messages in thread
From: Pablo Rodriguez @ 2021-06-11 15:03 UTC (permalink / raw)
  To: ntg-context

On 6/10/21 11:35 PM, Hans Hagen wrote:
> [...]
> I made a typescript for the 10pt regular and book (as I see no reason to
> configure 8pt).  So, assuming that one installs these fonts:
>
> \setupbodyfont[newcomputermodern-book]
> \setupbodyfont[newcomputermodern]
> [...]
> Happy testing (hopefully there are no side effects).

Many thanks for the new latest, Hans.

The following sample shows an issue with "newcmmono10-bolditalic.otf":

  \mainlanguage[agr]
  \definefontfamily[another][rm][Another]
    [tf=file:newcmmono10-boldoblique.otf]
  \setupbodyfont[newcomputermodern]
  \starttext
  \tt\bi\input aristotle-grc\par
  \switchtobodyfont[another]
  \input aristotle-grc\par
  \it\input aristotle-grc
  \stoptext

I’m afraid that there is no "newcmmono10-bolditalic.otf", but
"newcmmono10-boldoblique.otf".

The following patch fixes the issue:

---
context/tex/texmf-context/tex/context/fonts/mkiv/type-imp-newcomputermodern.mkiv
2021-06-11 16:58:53.742990586 +0200
+++ type-imp-newcomputermodern.mkiv	2021-06-11 16:51:57.861274985 +0200
@@ -46,7 +46,7 @@
         \definefontsynonym [\s!MonoItalic]
[\s!file:newcmmono10-italic.otf]
[\s!features=\s!none,\s!fallbacks=\s!MonoItalic]
-        \definefontsynonym [\s!MonoBoldItalic]
[\s!file:newcmmono10-bolditalic.otf]
[\s!features=\s!none,\s!fallbacks=\s!MonoBoldItalic]
+        \definefontsynonym [\s!MonoBoldItalic]
[\s!file:newcmmono10-boldoblique.otf]
[\s!features=\s!none,\s!fallbacks=\s!MonoBoldItalic]
     \stoptypescript

     \starttypescript [\s!math][newcomputermodern] [\s!name]
@@ -76,7 +76,7 @@
         \definefontsynonym [\s!MonoItalic]
[\s!file:newcmmono10-bookitalic.otf]
[\s!features=\s!none,\s!fallbacks=\s!MonoItalic]
-        \definefontsynonym [\s!MonoBoldItalic]
[\s!file:newcmmono10-bolditalic.otf]
[\s!features=\s!none,\s!fallbacks=\s!MonoBoldItalic]
+        \definefontsynonym [\s!MonoBoldItalic]
[\s!file:newcmmono10-boldoblique.otf]
[\s!features=\s!none,\s!fallbacks=\s!MonoBoldItalic]
     \stoptypescript

     \starttypescript [\s!math][newcomputermodern-book] [\s!name]

Many thanks for your excellent work with ConTeXt,

Pablo
--
http://www.ousia.tk
___________________________________________________________________________________
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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki     : http://contextgarden.net
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2021-06-11 15:03 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-06-10 21:35 upload / some new math stuff Hans Hagen
2021-06-11  7:54 ` Mikael Sundqvist
2021-06-11 10:23   ` Fabrice Couvreur
2021-06-11 11:05     ` Hans Hagen
2021-06-11 13:22 ` Alan Braslau
2021-06-11 15:02   ` Hans Hagen
2021-06-11 15:03 ` Pablo Rodriguez

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).