ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* Some questions about TeX Gyre support in minimals
@ 2008-10-22 22:31 Oleg Kolosov
  2008-10-23  1:10 ` Mojca Miklavec
  2008-10-23  6:51 ` Wolfgang Schuster
  0 siblings, 2 replies; 10+ messages in thread
From: Oleg Kolosov @ 2008-10-22 22:31 UTC (permalink / raw)
  To: mailing list for ConTeXt users

Hello Everyone!

I've started to experiment with MkIV in ConTeXt minimals recently trying to
make TeX Gyre fonts work with as few definitions as possible. Here is the list
of problems I've encountered:

1. No small-caps in any font (gyre fonts doesn't have that yet?)

2. adventor have italic but slanted displays as normal (roman)

3. cursor have only roman script (no bold, slanted, etc.)

Is this due to lack of fonts in Gyre package, some omissions in type-otf.tex
or my typescript definitions are not complete?

Here is the test file which I've used (some cyrillic text also):
------------------------
\starttypescript[mygyre]
% change font last arg according to definitions in type-otf.tex
% pagella, termes, bonum, schola
\definetypeface [mygyre] [rm] [serif] [pagella]
% heros, adventor
\definetypeface [mygyre] [ss] [sans]  [adventor]
\definetypeface [mygyre] [tt] [sans]  [cursor]
\definetypeface [mygyre] [mm] [math]  [palatino]
\stoptypescript

\startbuffer[tests]
\starttabulate
\NC \tf tf \NC \tf Нормальный текст     \NC\AR
\NC \bf bf \NC \bf Полужирный текст     \NC\AR
\NC \it it \NC \it Курсивный текст      \NC\AR
\NC \sl sl \NC \sl Наклонный текст      \NC\AR
\NC \bi bi \NC \bi Полужирный курсив    \NC\AR
\NC \bs bs \NC \bs Полужирынй наклонный \NC\AR
\NC \sc sc \NC \sc Пробный текст        \NC\AR
\stoptabulate
\stopbuffer

\usetypescript[mygyre]
\setupbodyfont[mygyre]

\starttext
\section{roman (rm)}
{\rm \getbuffer[tests]}

\section{sans-serif (ss)}
{\ss \getbuffer[tests]}

\section{teletype (tt)}
{\tt \getbuffer[tests]}

\stoptext
------------------------

I'll update Russian section in the wiki, once these points are clarified.

-- 
Regards,
Oleg Kolosov
___________________________________________________________________________________
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  : https://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________

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

* Re: Some questions about TeX Gyre support in minimals
  2008-10-22 22:31 Some questions about TeX Gyre support in minimals Oleg Kolosov
@ 2008-10-23  1:10 ` Mojca Miklavec
  2008-10-23 19:07   ` Oleg Kolosov
  2008-10-23  6:51 ` Wolfgang Schuster
  1 sibling, 1 reply; 10+ messages in thread
From: Mojca Miklavec @ 2008-10-23  1:10 UTC (permalink / raw)
  To: mailing list for ConTeXt users

On Thu, Oct 23, 2008 at 12:31 AM, Oleg Kolosov wrote:
> Hello Everyone!

Hello,

> I've started to experiment with MkIV in ConTeXt minimals recently trying to
> make TeX Gyre fonts work with as few definitions as possible. Here is the list
> of problems I've encountered:
>
> 1. No small-caps in any font (gyre fonts doesn't have that yet?)

I didn't check yet, but it's probably a global problem in mkiv
smallcaps support.

> 2. adventor have italic but slanted displays as normal (roman)

in type-otf.tex at least this is missing:

\starttypescript [sans] [adventor] % and possibly others
    \definefontsynonym [\typescriptprefix{n:\typescripttwo}-Regular]
     [file:texgyre\typescriptprefix{f:\typescripttwo}-regular]
[features=default]
    \definefontsynonym [\typescriptprefix{n:\typescripttwo}-Italic]
     [file:texgyre\typescriptprefix{f:\typescripttwo}-italic]
[features=default]
    \definefontsynonym [\typescriptprefix{n:\typescripttwo}-Bold]
     [file:texgyre\typescriptprefix{f:\typescripttwo}-bold]
[features=default]
    \definefontsynonym
[\typescriptprefix{n:\typescripttwo}-BoldItalic]
[file:texgyre\typescriptprefix{f:\typescripttwo}-bolditalic]
[features=default]
    \definefontsynonym [\typescriptprefix{n:\typescripttwo}-Caps]
     [file:texgyre\typescriptprefix{f:\typescripttwo}-regular]
[features=oldstyle]
    \definefontsynonym
[\typescriptprefix{n:\typescripttwo}-ItalicCaps]
[file:texgyre\typescriptprefix{f:\typescripttwo}-italic]
[features=oldstyle]
    \definefontsynonym [\typescriptprefix{n:\typescripttwo}-BoldCaps]
     [file:texgyre\typescriptprefix{f:\typescripttwo}-bold]
[features=oldstyle]
    \definefontsynonym
[\typescriptprefix{n:\typescripttwo}-BoldItalicCaps]
[file:texgyre\typescriptprefix{f:\typescripttwo}-bolditalic]
[features=oldstyle]
    \definefontsynonym [\typescriptprefix{n:\typescripttwo}-Slanted]
     [\typescriptprefix{n:\typescripttwo}-Italic]
[features=default]
    \definefontsynonym
[\typescriptprefix{n:\typescripttwo}-BoldSlanted]
[\typescriptprefix{n:\typescripttwo}-BoldItalic]
[features=default]
\stoptypescript

The same is true for mono.

> 3. cursor have only roman script (no bold, slanted, etc.)
> \definetypeface [mygyre] [tt] [sans]  [cursor]

Try
   \definetypeface [mygyre] [tt] [mono]  [cursor]

Also, in type-otf.tex one needs to fix
\starttypescript [sans] [cursor] [name]
into
\starttypescript [sans] [mono] [name]


Thanks a lot for pointing out all the problems.

Mojca

(I'm just afraid that you'll find so many problem in the Cyrillic part
of Gyre ...)
___________________________________________________________________________________
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  : https://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________


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

* Re: Some questions about TeX Gyre support in minimals
  2008-10-22 22:31 Some questions about TeX Gyre support in minimals Oleg Kolosov
  2008-10-23  1:10 ` Mojca Miklavec
@ 2008-10-23  6:51 ` Wolfgang Schuster
  2008-10-23 13:33   ` Aditya Mahajan
  1 sibling, 1 reply; 10+ messages in thread
From: Wolfgang Schuster @ 2008-10-23  6:51 UTC (permalink / raw)
  To: mailing list for ConTeXt users

On Thu, Oct 23, 2008 at 12:31 AM, Oleg Kolosov <bazurbat@gmail.com> wrote:
> Hello Everyone!
>
> I've started to experiment with MkIV in ConTeXt minimals recently trying to
> make TeX Gyre fonts work with as few definitions as possible. Here is the list
> of problems I've encountered:
>
> 1. No small-caps in any font (gyre fonts doesn't have that yet?)

\usetypescript[palatino]
\setupbodyfont[palatino]

\def\os{\groupedcommand{\setfontfeature{oldstyle}}{}}

\starttext

0123456789 {\os 0123456789}

\stoptext

Test the other fonts by yourself.

> 2. adventor have italic but slanted displays as normal (roman)
>
> 3. cursor have only roman script (no bold, slanted, etc.)
>
> Is this due to lack of fonts in Gyre package, some omissions in type-otf.tex
> or my typescript definitions are not complete?
>
> Here is the test file which I've used (some cyrillic text also):
> ------------------------
> \starttypescript[mygyre]
> % change font last arg according to definitions in type-otf.tex
> % pagella, termes, bonum, schola
> \definetypeface [mygyre] [rm] [serif] [pagella]
> % heros, adventor
> \definetypeface [mygyre] [ss] [sans]  [adventor]
> \definetypeface [mygyre] [tt] [sans]  [cursor]
> \definetypeface [mygyre] [mm] [math]  [palatino]
> \stoptypescript
>
> \startbuffer[tests]
> \starttabulate
> \NC \tf tf \NC \tf Нормальный текст     \NC\AR
> \NC \bf bf \NC \bf Полужирный текст     \NC\AR
> \NC \it it \NC \it Курсивный текст      \NC\AR
> \NC \sl sl \NC \sl Наклонный текст      \NC\AR
> \NC \bi bi \NC \bi Полужирный курсив    \NC\AR
> \NC \bs bs \NC \bs Полужирынй наклонный \NC\AR
> \NC \sc sc \NC \sc Пробный текст        \NC\AR
> \stoptabulate
> \stopbuffer
>
> \usetypescript[mygyre]
> \setupbodyfont[mygyre]
>
> \starttext
> \section{roman (rm)}
> {\rm \getbuffer[tests]}
>
> \section{sans-serif (ss)}
> {\ss \getbuffer[tests]}
>
> \section{teletype (tt)}
> {\tt \getbuffer[tests]}
>
> \stoptext
> ------------------------
>
> I'll update Russian section in the wiki, once these points are clarified.
>
> --
> Regards,
> Oleg Kolosov

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  : https://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________

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

* Re: Some questions about TeX Gyre support in minimals
  2008-10-23  6:51 ` Wolfgang Schuster
@ 2008-10-23 13:33   ` Aditya Mahajan
  2008-10-23 13:43     ` Wolfgang Schuster
  2008-10-23 14:33     ` Hans Hagen
  0 siblings, 2 replies; 10+ messages in thread
From: Aditya Mahajan @ 2008-10-23 13:33 UTC (permalink / raw)
  To: mailing list for ConTeXt users

[-- Attachment #1: Type: TEXT/PLAIN, Size: 2872 bytes --]

On Thu, 23 Oct 2008, Wolfgang Schuster wrote:

> On Thu, Oct 23, 2008 at 12:31 AM, Oleg Kolosov <bazurbat@gmail.com> wrote:
>> Hello Everyone!
>>
>> I've started to experiment with MkIV in ConTeXt minimals recently trying to
>> make TeX Gyre fonts work with as few definitions as possible. Here is the list
>> of problems I've encountered:
>>
>> 1. No small-caps in any font (gyre fonts doesn't have that yet?)
>
> \usetypescript[palatino]
> \setupbodyfont[palatino]
>
> \def\os{\groupedcommand{\setfontfeature{oldstyle}}{}}

Shouldn't that be just

\def\os{\setufontfeature{oldstyle}}

Aditya

> \starttext
>
> 0123456789 {\os 0123456789}
>
> \stoptext
>
> Test the other fonts by yourself.
>
>> 2. adventor have italic but slanted displays as normal (roman)
>>
>> 3. cursor have only roman script (no bold, slanted, etc.)
>>
>> Is this due to lack of fonts in Gyre package, some omissions in type-otf.tex
>> or my typescript definitions are not complete?
>>
>> Here is the test file which I've used (some cyrillic text also):
>> ------------------------
>> \starttypescript[mygyre]
>> % change font last arg according to definitions in type-otf.tex
>> % pagella, termes, bonum, schola
>> \definetypeface [mygyre] [rm] [serif] [pagella]
>> % heros, adventor
>> \definetypeface [mygyre] [ss] [sans]  [adventor]
>> \definetypeface [mygyre] [tt] [sans]  [cursor]
>> \definetypeface [mygyre] [mm] [math]  [palatino]
>> \stoptypescript
>>
>> \startbuffer[tests]
>> \starttabulate
>> \NC \tf tf \NC \tf Нормальный текст     \NC\AR
>> \NC \bf bf \NC \bf Полужирный текст     \NC\AR
>> \NC \it it \NC \it Курсивный текст      \NC\AR
>> \NC \sl sl \NC \sl Наклонный текст      \NC\AR
>> \NC \bi bi \NC \bi Полужирный курсив    \NC\AR
>> \NC \bs bs \NC \bs Полужирынй наклонный \NC\AR
>> \NC \sc sc \NC \sc Пробный текст        \NC\AR
>> \stoptabulate
>> \stopbuffer
>>
>> \usetypescript[mygyre]
>> \setupbodyfont[mygyre]
>>
>> \starttext
>> \section{roman (rm)}
>> {\rm \getbuffer[tests]}
>>
>> \section{sans-serif (ss)}
>> {\ss \getbuffer[tests]}
>>
>> \section{teletype (tt)}
>> {\tt \getbuffer[tests]}
>>
>> \stoptext
>> ------------------------
>>
>> I'll update Russian section in the wiki, once these points are clarified.
>>
>> --
>> Regards,
>> Oleg Kolosov
>
> 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  : https://foundry.supelec.fr/projects/contextrev/
> wiki     : http://contextgarden.net
> ___________________________________________________________________________________
>
>
>

[-- Attachment #2: Type: text/plain, Size: 487 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://tex.aanhet.net
archive  : https://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________

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

* Re: Some questions about TeX Gyre support in minimals
  2008-10-23 13:33   ` Aditya Mahajan
@ 2008-10-23 13:43     ` Wolfgang Schuster
  2008-10-23 14:33     ` Hans Hagen
  1 sibling, 0 replies; 10+ messages in thread
From: Wolfgang Schuster @ 2008-10-23 13:43 UTC (permalink / raw)
  To: mailing list for ConTeXt users

On Thu, Oct 23, 2008 at 3:33 PM, Aditya Mahajan <adityam@umich.edu> wrote:
> On Thu, 23 Oct 2008, Wolfgang Schuster wrote:
>
>> On Thu, Oct 23, 2008 at 12:31 AM, Oleg Kolosov <bazurbat@gmail.com> wrote:
>>>
>>> Hello Everyone!
>>>
>>> I've started to experiment with MkIV in ConTeXt minimals recently trying
>>> to
>>> make TeX Gyre fonts work with as few definitions as possible. Here is the
>>> list
>>> of problems I've encountered:
>>>
>>> 1. No small-caps in any font (gyre fonts doesn't have that yet?)
>>
>> \usetypescript[palatino]
>> \setupbodyfont[palatino]
>>
>> \def\os{\groupedcommand{\setfontfeature{oldstyle}}{}}
>
> Shouldn't that be just
>
> \def\os{\setufontfeature{oldstyle}}

I don't know what the best method is, I never user them in this way.

Hans suggested this method.

http://archive.contextgarden.net/message/20080920.104922.1b864b2b.en.html

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  : https://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________


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

* Re: Some questions about TeX Gyre support in minimals
  2008-10-23 13:33   ` Aditya Mahajan
  2008-10-23 13:43     ` Wolfgang Schuster
@ 2008-10-23 14:33     ` Hans Hagen
  1 sibling, 0 replies; 10+ messages in thread
From: Hans Hagen @ 2008-10-23 14:33 UTC (permalink / raw)
  To: mailing list for ConTeXt users

Aditya Mahajan wrote:
> On Thu, 23 Oct 2008, Wolfgang Schuster wrote:
> 
>> On Thu, Oct 23, 2008 at 12:31 AM, Oleg Kolosov <bazurbat@gmail.com> 
>> wrote:
>>> Hello Everyone!
>>>
>>> I've started to experiment with MkIV in ConTeXt minimals recently 
>>> trying to
>>> make TeX Gyre fonts work with as few definitions as possible. Here is 
>>> the list
>>> of problems I've encountered:
>>>
>>> 1. No small-caps in any font (gyre fonts doesn't have that yet?)
>>
>> \usetypescript[palatino]
>> \setupbodyfont[palatino]
>>
>> \def\os{\groupedcommand{\setfontfeature{oldstyle}}{}}
> 
> Shouldn't that be just
> 
> \def\os{\setufontfeature{oldstyle}}

the grouped variant permits \os{123} and {\os 123}

-----------------------------------------------------------------
                                           Hans Hagen | PRAGMA ADE
               Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
      tel: 038 477 53 69 | fax: 038 477 53 74 | www.pragma-ade.com
                                              | 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://tex.aanhet.net
archive  : https://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________


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

* Re: Some questions about TeX Gyre support in minimals
  2008-10-23  1:10 ` Mojca Miklavec
@ 2008-10-23 19:07   ` Oleg Kolosov
  2008-10-23 22:53     ` Marcin Borkowski
  0 siblings, 1 reply; 10+ messages in thread
From: Oleg Kolosov @ 2008-10-23 19:07 UTC (permalink / raw)
  To: mailing list for ConTeXt users

[-- Attachment #1: Type: text/plain, Size: 1891 bytes --]

Mojca Miklavec wrote:
>> 1. No small-caps in any font (gyre fonts doesn't have that yet?)
> 
> I didn't check yet, but it's probably a global problem in mkiv
> smallcaps support.
> 

Tried with MkII and MkIV. No small caps in sans-serif only if text is written
in english. In MkIV with gyre smallcaps are available only in normal script.
But with cyrillic no smallcaps in every case.

If you need I can test every combination and make a more detailed report.

>> 2. adventor have italic but slanted displays as normal (roman)
> 
> in type-otf.tex at least this is missing:
> 
> \starttypescript [sans] [adventor] % and possibly others
>     \definefontsynonym [\typescriptprefix{n:\typescripttwo}-Regular]
> ....
> 
> The same is true for mono.
> 

Great! These definitions fixed the most problems. One note: previously
cyrillic "should be smallcaps" text displayed as roman, now it is missing
completely, but latin works fine. Is there a workaround to remap this somehow?
I didn't learn about typescripts enough yet to do this myself (but working on it).

>> 3. cursor have only roman script (no bold, slanted, etc.)
>> \definetypeface [mygyre] [tt] [sans]  [cursor]
> 
> Try
>    \definetypeface [mygyre] [tt] [mono]  [cursor]
> 
> Also, in type-otf.tex one needs to fix
> \starttypescript [sans] [cursor] [name]
> into
> \starttypescript [sans] [mono] [name]
> 

Possibly this should be: \starttypescript [mono] [cursor] [name] ?

> (I'm just afraid that you'll find so many problem in the Cyrillic part
> of Gyre ...)

Except for missing small-caps (this is not critical at all) and with addition
of your definitions in type-otf.tex TeX Gyre support is enough to write in
Russian language (tested all fonts). I've compiled big documents and not found
any deficiencies so far.

Attached the resulting type-otf.tex. Maybe this'll save a few minutes for someone.

-- 
Regards,
Oleg Kolosov

[-- Attachment #2: type-otf.tex --]
[-- Type: text/x-tex, Size: 49010 bytes --]

%D \module
%D   [       file=type-otf,
%D        version=2007.07.30,
%D          title=\CONTEXT\ Typescript Macros,
%D       subtitle=Opentype Definitions,
%D         author=Hans Hagen,
%D           date=\currentdate,
%D      copyright={PRAGMA / Hans Hagen \& Ton Otten}]
%C
%C This module is part of the \CONTEXT\ macro||package and is
%C therefore copyrighted by \PRAGMA. See mreadme.pdf for
%C details.

%D Actually, \LUATEX\ does not need all these definitions since it can
%D consult its database. However, here we use the names that we used
%D in good old \TEX, and these may differ a bit. Here we also see
%D some oldstyle definitions which normally are done with features.

\starttypescriptcollection[examples]

\starttypescript [fallback]
    \definetypeface [] [rm] [serif] [modern] [computer-modern]
    \definetypeface [] [ss] [sans]  [modern] [computer-modern]
    \definetypeface [] [tt] [mono]  [modern] [computer-modern]
    \definetypeface [] [mm] [math]  [modern] [computer-modern]
    \quittypescriptscanning
\stoptypescript

\starttypescript [modern]
    \definetypeface [modern] [rm] [serif] [modern] [computer-modern]
    \definetypeface [modern] [ss] [sans]  [modern] [computer-modern]
    \definetypeface [modern] [tt] [mono]  [modern] [computer-modern]
    \definetypeface [modern] [mm] [math]  [modern] [computer-modern]
    \quittypescriptscanning
\stoptypescript

\starttypescript [modern-base]
    \definetypeface [modern] [rm] [serif] [modern] [default]
    \definetypeface [modern] [ss] [sans]  [modern] [default]
    \definetypeface [modern] [tt] [mono]  [modern] [default]
    \definetypeface [modern] [mm] [math]  [modern] [default]
    \quittypescriptscanning
\stoptypescript

\starttypescript [postscript]
    \definetypeface [postscript] [rm] [serif] [times]     [default]
    \definetypeface [postscript] [ss] [sans]  [helvetica] [default] [rscale=.9]
    \definetypeface [postscript] [tt] [mono]  [courier]   [default] [rscale=1.1]
    \definetypeface [postscript] [mm] [math]  [times]     [default]
    \quittypescriptscanning
\stoptypescript

\starttypescript [times]
    \definetypeface [times] [rm] [serif] [times]     [default]
    \definetypeface [times] [ss] [sans]  [helvetica] [default] [rscale=0.9]
    \definetypeface [times] [tt] [mono]  [modern]    [default] [rscale=1.05]
    \definetypeface [times] [mm] [math]  [times]     [default]
    \quittypescriptscanning
\stoptypescript

\starttypescript [palatino]
    \definetypeface [palatino] [rm] [serif] [palatino] [default]
    \definetypeface [palatino] [ss] [sans]  [modern]   [default] [rscale=1.075]
    \definetypeface [palatino] [tt] [mono]  [modern]   [default] [rscale=1.075]
    \definetypeface [palatino] [mm] [math]  [palatino] [default]
    \quittypescriptscanning
\stoptypescript

\starttypescript [modernvariable]
    \definetypeface [modernvariable] [rm] [serif] [simple] [default]
    \definetypeface [modernvariable] [ss] [sans]  [modern] [default]
    \definetypeface [modernvariable] [tt] [mono]  [modern] [default]
    \definetypeface [modernvariable] [mm] [math]  [modern] [default]
    \quittypescriptscanning
\stoptypescript

\starttypescript [antykwa-torunska]
    \definetypeface[antykwa][rm][serif][antykwa-torunska]   [default]
    \definetypeface[antykwa][ss][sans] [modern]             [default] [rscale=1.05]
    \definetypeface[antykwa][tt][mono] [modern]             [default] [rscale=1.1]
    \definetypeface[antykwa][mm][math] [antykwa-torunska]   [default]
    \quittypescriptscanning
\stoptypescript

\starttypescript [iwona,iwona-light,iwona-heavy,iwona-medium]
    \definetypeface[\typescriptone][ss][sans] [\typescriptone] [default]
    \definetypeface[\typescriptone][rm][serif][modern]         [default]
    \definetypeface[\typescriptone][tt][mono] [modern]         [default]
    \definetypeface[\typescriptone][mm][math] [\typescriptone] [default][text=ss]
    \quittypescriptscanning
\stoptypescript

\stoptypescriptcollection

% if a fontname equals the filename, then use
%
% \setupfontsynonym  [LMRoman10-DemiOblique]                              [features=default] % file is lowercase, so fails
% \definefontsynonym [LMRoman10-DemiOblique] [name:LMRoman10-DemiOblique] [features=default]
% \definefontsynonym [LMRoman10-DemiOblique] [lmroman10-demioblique]      [features=default]

\starttypescriptcollection[opentype]

%D The names have changed (again) ... but I will not change the symbolic names
%D any more. Filename changes will be catched in luatex (fallbacks) but not in
%D other tex's.

\starttypescript [serif] [modern,latin-modern]
    \definefontsynonym [LMRoman5-Regular]      [file:lmroman5-regular]      [features=default]
    \definefontsynonym [LMRoman6-Regular]      [file:lmroman6-regular]      [features=default]
    \definefontsynonym [LMRoman7-Regular]      [file:lmroman7-regular]      [features=default]
    \definefontsynonym [LMRoman8-Regular]      [file:lmroman8-regular]      [features=default]
    \definefontsynonym [LMRoman9-Regular]      [file:lmroman9-regular]      [features=default]
    \definefontsynonym [LMRoman10-Regular]     [file:lmroman10-regular]     [features=default]
    \definefontsynonym [LMRoman12-Regular]     [file:lmroman12-regular]     [features=default]
    \definefontsynonym [LMRoman17-Regular]     [file:lmroman17-regular]     [features=default]
    \definefontsynonym [LMRoman5-Bold]         [file:lmroman5-bold]         [features=default]
    \definefontsynonym [LMRoman6-Bold]         [file:lmroman6-bold]         [features=default]
    \definefontsynonym [LMRoman7-Bold]         [file:lmroman7-bold]         [features=default]
    \definefontsynonym [LMRoman8-Bold]         [file:lmroman8-bold]         [features=default]
    \definefontsynonym [LMRoman9-Bold]         [file:lmroman9-bold]         [features=default]
    \definefontsynonym [LMRoman10-Bold]        [file:lmroman10-bold]        [features=default]
    \definefontsynonym [LMRoman12-Bold]        [file:lmroman12-bold]        [features=default]
    \definefontsynonym [LMRoman7-Italic]       [file:lmroman7-italic]       [features=default]
    \definefontsynonym [LMRoman8-Italic]       [file:lmroman8-italic]       [features=default]
    \definefontsynonym [LMRoman9-Italic]       [file:lmroman9-italic]       [features=default]
    \definefontsynonym [LMRoman10-Italic]      [file:lmroman10-italic]      [features=default]
    \definefontsynonym [LMRoman12-Italic]      [file:lmroman12-italic]      [features=default]
    \definefontsynonym [LMRoman10-BoldItalic]  [file:lmroman10-bolditalic]  [features=default]
    \definefontsynonym [LMRoman8-Oblique]      [file:lmromanslant8-regular] [features=default]
    \definefontsynonym [LMRoman9-Oblique]      [file:lmromanslant9-regular] [features=default]
    \definefontsynonym [LMRoman10-Oblique]     [file:lmromanslant10-regular][features=default]
    \definefontsynonym [LMRoman12-Oblique]     [file:lmromanslant12-regular][features=default]
    \definefontsynonym [LMRoman17-Oblique]     [file:lmromanslant17-regular][features=default]
    \definefontsynonym [LMRoman10-BoldOblique] [file:lmromanslant10-bold]   [features=default]
    \definefontsynonym [LMRoman10-Demi]        [file:lmromandemi10-regular] [features=default]
    \definefontsynonym [LMRoman10-DemiOblique] [file:lmromandemi10-oblique] [features=default]
    \definefontsynonym [LMRoman10-CapsRegular] [file:lmromancaps10-regular] [features=default] % features=smallcaps?
    \definefontsynonym [LMRoman10-CapsOblique] [file:lmromancaps10-oblique] [features=default]

    \definefontsynonym [LMRoman10-Dunhill]        [file:lmromandunh10-regular] [features=default]
    \definefontsynonym [LMRoman10-DunhillOblique] [file:lmromandunh10-oblique] [features=default]
    \definefontsynonym [LMRoman10-Unslanted]      [file:lmromanunsl10-regular] [features=default]
\stoptypescript

\starttypescript [sans] [modern,latin-modern]
    \definefontsynonym [LMSans8-Regular]               [file:lmsans8-regular]          [features=default]
    \definefontsynonym [LMSans9-Regular]               [file:lmsans9-regular]          [features=default]
    \definefontsynonym [LMSans10-Regular]              [file:lmsans10-regular]         [features=default]
    \definefontsynonym [LMSans12-Regular]              [file:lmsans12-regular]         [features=default]
    \definefontsynonym [LMSans17-Regular]              [file:lmsans17-regular]         [features=default]
    \definefontsynonym [LMSans10-Bold]                 [file:lmsans10-bold]            [features=default]
    \definefontsynonym [LMSans8-Oblique]               [file:lmsans8-oblique]          [features=default]
    \definefontsynonym [LMSans9-Oblique]               [file:lmsans9-oblique]          [features=default]
    \definefontsynonym [LMSans10-Oblique]              [file:lmsans10-oblique]         [features=default]
    \definefontsynonym [LMSans12-Oblique]              [file:lmsans12-oblique]         [features=default]
    \definefontsynonym [LMSans17-Oblique]              [file:lmsans17-oblique]         [features=default]
    \definefontsynonym [LMSans10-BoldOblique]          [file:lmsans10-boldoblique]     [features=default]

    \definefontsynonym [LMSans10-DemiCondensed]        [file:lmsansdemicond10-regular] [features=default]
    \definefontsynonym [LMSans10-DemiCondensedOblique] [file:lmsansdemicond10-oblique] [features=default]

    \definefontsynonym [LMSansQuotation8-Regular]      [file:lmsansquot8-regular]      [features=default]
    \definefontsynonym [LMSansQuotation8-Bold]         [file:lmsansquot8-bold]         [features=default]
    \definefontsynonym [LMSansQuotation8-Oblique]      [file:lmsansquot8-oblique]      [features=default]
    \definefontsynonym [LMSansQuotation8-BoldOblique]  [file:lmsansquot8-boldoblique]  [features=default]
\stoptypescript

\starttypescript [mono] [modern,latin-modern,modern-vari,latin-modern-vari,modern-cond,latin-modern-cond]
    \definefontsynonym [LMTypewriter8-Regular]                [file:lmmono8-regular]
    \definefontsynonym [LMTypewriter9-Regular]                [file:lmmono9-regular]
    \definefontsynonym [LMTypewriter10-Regular]               [file:lmmono10-regular]
    \definefontsynonym [LMTypewriter12-Regular]               [file:lmmono12-regular]
    \definefontsynonym [LMTypewriter10-Italic]                [file:lmmono10-italic]
    \definefontsynonym [LMTypewriter10-Oblique]               [file:lmmonoslant10-regular]
    \definefontsynonym [LMTypewriter10-CapsRegular]           [file:lmmonocaps10-regular] % features=smallcaps?
    \definefontsynonym [LMTypewriter10-CapsOblique]           [file:lmmonocaps10-oblique]

    \definefontsynonym [LMTypewriter10-Light]                 [file:lmmonolt10-regular]
    \definefontsynonym [LMTypewriter10-LightOblique]          [file:lmmonolt10-oblique]
    \definefontsynonym [LMTypewriter10-LightCondensed]        [file:lmmonoltcond10-regular]
    \definefontsynonym [LMTypewriter10-LightCondensedOblique] [file:lmmonoltcond10-oblique]

    \definefontsynonym [LMTypewriter10-Dark]                  [file:lmmonolt10-bold]
    \definefontsynonym [LMTypewriter10-DarkOblique]           [file:lmmonolt10-boldoblique]

    \definefontsynonym [LMTypewriterVarWd10-Regular]          [file:lmmonoproplt10-regular]     [features=default]
    \definefontsynonym [LMTypewriterVarWd10-Oblique]          [file:lmmonoproplt10-oblique]     [features=default]
    \definefontsynonym [LMTypewriterVarWd10-Light]            [file:lmmonoprop10-regular]       [features=default]
    \definefontsynonym [LMTypewriterVarWd10-LightOblique]     [file:lmmonoprop10-oblique]       [features=default]
    \definefontsynonym [LMTypewriterVarWd10-Dark]             [file:lmmonoproplt10-bold]        [features=default]
    \definefontsynonym [LMTypewriterVarWd10-DarkOblique]      [file:lmmonoproplt10-boldoblique] [features=default]
\stoptypescript

\starttypescript [math] [modern,latin-modern]
    \definefontsynonym [LMMathRoman5-Regular]      [rm-lmr5]
    \definefontsynonym [LMMathRoman6-Regular]      [rm-lmr6]
    \definefontsynonym [LMMathRoman7-Regular]      [rm-lmr7]
    \definefontsynonym [LMMathRoman8-Regular]      [rm-lmr8]
    \definefontsynonym [LMMathRoman9-Regular]      [rm-lmr9]
    \definefontsynonym [LMMathRoman10-Regular]     [rm-lmr10]
    \definefontsynonym [LMMathRoman12-Regular]     [rm-lmr12]
    \definefontsynonym [LMMathRoman17-Regular]     [rm-lmr17]
    \definefontsynonym [LMMathRoman5-Bold]         [rm-lmbx5]
    \definefontsynonym [LMMathRoman6-Bold]         [rm-lmbx6]
    \definefontsynonym [LMMathRoman7-Bold]         [rm-lmbx7]
    \definefontsynonym [LMMathRoman8-Bold]         [rm-lmbx8]
    \definefontsynonym [LMMathRoman9-Bold]         [rm-lmbx9]
    \definefontsynonym [LMMathRoman10-Bold]        [rm-lmbx10]
    \definefontsynonym [LMMathRoman12-Bold]        [rm-lmbx12]
    \definefontsynonym [LMMathSymbols5-BoldItalic] [lmbsy5]
    \definefontsynonym [LMMathSymbols7-BoldItalic] [lmbsy7]
    \definefontsynonym [LMMathSymbols10-BoldItalic][lmbsy10]
    \definefontsynonym [LMMathSymbols5-Italic]     [lmsy5]
    \definefontsynonym [LMMathSymbols6-Italic]     [lmsy6]
    \definefontsynonym [LMMathSymbols7-Italic]     [lmsy7]
    \definefontsynonym [LMMathSymbols8-Italic]     [lmsy8]
    \definefontsynonym [LMMathSymbols9-Italic]     [lmsy9]
    \definefontsynonym [LMMathSymbols10-Italic]    [lmsy10]
    \definefontsynonym [LMMathExtension10-Regular] [lmex10]
    \definefontsynonym [LMMathItalic5-Italic]      [lmmi5]
    \definefontsynonym [LMMathItalic6-Italic]      [lmmi6]
    \definefontsynonym [LMMathItalic7-Italic]      [lmmi7]
    \definefontsynonym [LMMathItalic8-Italic]      [lmmi8]
    \definefontsynonym [LMMathItalic9-Italic]      [lmmi9]
    \definefontsynonym [LMMathItalic10-Italic]     [lmmi10]
    \definefontsynonym [LMMathItalic12-Italic]     [lmmi12]
    \definefontsynonym [LMMathItalic5-BoldItalic]  [lmmib5]
    \definefontsynonym [LMMathItalic7-BoldItalic]  [lmmib7]
    \definefontsynonym [LMMathItalic10-BoldItalic] [lmmib10]

    \loadmapfile[lm-math.map]
    \loadmapfile[lm-rm.map]
\stoptypescript

\starttypescript [math] [modern,computer-modern,latin-modern]
    \definefontsynonym [ComputerModernMath-Roman]     [rm-lmr10]
    \definefontsynonym [ComputerModernMath-Extension] [lmex10]
    \definefontsynonym [ComputerModernMath-Italic]    [lmmi10]
    \definefontsynonym [ComputerModernMath-Symbol]    [lmsy10]
\stoptypescript

\starttypescript [boldmath,bfmath] [modern,computer-modern,latin-modern]
    \definefontsynonym [ComputerModernMath-Roman-Bold]  [rm-lmb10]
    \definefontsynonym [ComputerModernMath-Extension]   [lmex10]
    \definefontsynonym [ComputerModernMath-Italic-Bold] [lmmib10]
    \definefontsynonym [ComputerModernMath-Symbol-Bold] [lmbsy10]
\stoptypescript

% Computer Concrete (AMS)

\starttypescript [serif] [concrete]
  \definefontsynonym [ComputerConcrete]             [ccr10]
  \definefontsynonym [ComputerConcrete-Italic]      [ccti10]
  \definefontsynonym [ComputerConcrete-Slanted]     [ccsl10]
  \definefontsynonym [ComputerConcrete-Bold]        [ComputerConcrete]
  \definefontsynonym [ComputerConcrete-BoldItalic]  [ComputerConcrete-Italic]
  \definefontsynonym [ComputerConcrete-BoldSlanted] [ComputerConcrete-Slanted]
  \definefontsynonym [ComputerConcrete-Caps]        [cccsc10]
\stoptypescript

% Euler (AMS)

\starttypescript [math] [euler]
    \definefontsynonym [Euler-Roman]      [zeurm10]
    \definefontsynonym [Euler-Extension]  [zeuex10]
    \definefontsynonym [Euler-Symbol]     [zeusm10]
    \definefontsynonym [Euler-Fraktur]    [eufm10]

    \loadmapfile[original-ams-euler.map]
\stoptypescript

\starttypescript [boldmath,bfmath] [euler]
    \definefontsynonym [Euler-Roman-Bold]     [zeurb10]
    \definefontsynonym [Euler-Extension]      [zeuex10]
    \definefontsynonym [Euler-Symbol-Bold]    [zeusb10]
    \definefontsynonym [Euler-Fraktur-Bold]   [eufb10]

    \loadmapfile[original-ams-euler.map]
\stoptypescript

% AMS (AMS)

\starttypescript [math] [modern,computer-modern,latin-modern,ams]
    \definefontsynonym [AMS-SymbolA] [msam10]
    \definefontsynonym [AMS-SymbolB] [msbm10]
\stoptypescript

% TeXGyre

\definetypescriptprefix [n:pagella] [TeXGyrePagella]      \definetypescriptprefix [f:pagella] [pagella]
\definetypescriptprefix [n:termes]  [TeXGyreTermes]       \definetypescriptprefix [f:termes]  [termes]
\definetypescriptprefix [n:heros]   [TeXGyreHeros]        \definetypescriptprefix [f:heros]   [heros]
\definetypescriptprefix [n:bonum]   [TeXGyreBonum]        \definetypescriptprefix [f:bonum]   [bonum]
\definetypescriptprefix [n:schola]  [TeXGyreSchola]       \definetypescriptprefix [f:schola]  [schola]
\definetypescriptprefix [n:adventor][TeXGyreAdventor]     \definetypescriptprefix [f:adventor][adventor]
\definetypescriptprefix [n:cursor]  [TeXGyreCursor]       \definetypescriptprefix [f:cursor]  [cursor]
\definetypescriptprefix [n:chorus]  [TeXGyreChorus]       \definetypescriptprefix [f:chorus]  [chorus] % not the full set


\starttypescript [serif] [adventor,bonum,cursor,heros,pagella,schola,termes]
    \definefontsynonym [\typescriptprefix{n:\typescripttwo}-Regular]        [file:texgyre\typescriptprefix{f:\typescripttwo}-regular]    [features=default]
    \definefontsynonym [\typescriptprefix{n:\typescripttwo}-Italic]         [file:texgyre\typescriptprefix{f:\typescripttwo}-italic]     [features=default]
    \definefontsynonym [\typescriptprefix{n:\typescripttwo}-Bold]           [file:texgyre\typescriptprefix{f:\typescripttwo}-bold]       [features=default]
    \definefontsynonym [\typescriptprefix{n:\typescripttwo}-BoldItalic]     [file:texgyre\typescriptprefix{f:\typescripttwo}-bolditalic] [features=default]
    \definefontsynonym [\typescriptprefix{n:\typescripttwo}-Caps]           [file:texgyre\typescriptprefix{f:\typescripttwo}-regular]    [features=oldstyle]
    \definefontsynonym [\typescriptprefix{n:\typescripttwo}-ItalicCaps]     [file:texgyre\typescriptprefix{f:\typescripttwo}-italic]     [features=oldstyle]
    \definefontsynonym [\typescriptprefix{n:\typescripttwo}-BoldCaps]       [file:texgyre\typescriptprefix{f:\typescripttwo}-bold]       [features=oldstyle]
    \definefontsynonym [\typescriptprefix{n:\typescripttwo}-BoldItalicCaps] [file:texgyre\typescriptprefix{f:\typescripttwo}-bolditalic] [features=oldstyle]
    \definefontsynonym [\typescriptprefix{n:\typescripttwo}-Slanted]        [\typescriptprefix{n:\typescripttwo}-Italic]                 [features=default]
    \definefontsynonym [\typescriptprefix{n:\typescripttwo}-BoldSlanted]    [\typescriptprefix{n:\typescripttwo}-BoldItalic]             [features=default]
\stoptypescript

\starttypescript [sans] [adventor,bonum,cursor,heros,pagella,schola,termes]
    \definefontsynonym [\typescriptprefix{n:\typescripttwo}-Regular]        [file:texgyre\typescriptprefix{f:\typescripttwo}-regular]    [features=default]
    \definefontsynonym [\typescriptprefix{n:\typescripttwo}-Italic]         [file:texgyre\typescriptprefix{f:\typescripttwo}-italic]     [features=default]
    \definefontsynonym [\typescriptprefix{n:\typescripttwo}-Bold]           [file:texgyre\typescriptprefix{f:\typescripttwo}-bold]       [features=default]
    \definefontsynonym [\typescriptprefix{n:\typescripttwo}-BoldItalic]     [file:texgyre\typescriptprefix{f:\typescripttwo}-bolditalic] [features=default]
    \definefontsynonym [\typescriptprefix{n:\typescripttwo}-Caps]           [file:texgyre\typescriptprefix{f:\typescripttwo}-regular]    [features=oldstyle]
    \definefontsynonym [\typescriptprefix{n:\typescripttwo}-ItalicCaps]     [file:texgyre\typescriptprefix{f:\typescripttwo}-italic]     [features=oldstyle]
    \definefontsynonym [\typescriptprefix{n:\typescripttwo}-BoldCaps]       [file:texgyre\typescriptprefix{f:\typescripttwo}-bold]       [features=oldstyle]
    \definefontsynonym [\typescriptprefix{n:\typescripttwo}-BoldItalicCaps] [file:texgyre\typescriptprefix{f:\typescripttwo}-bolditalic] [features=oldstyle]
    \definefontsynonym [\typescriptprefix{n:\typescripttwo}-Slanted]        [\typescriptprefix{n:\typescripttwo}-Italic]                 [features=default]
    \definefontsynonym [\typescriptprefix{n:\typescripttwo}-BoldSlanted]    [\typescriptprefix{n:\typescripttwo}-BoldItalic]             [features=default]
\stoptypescript

\starttypescript [mono] [adventor,bonum,cursor,heros,pagella,schola,termes]
    \definefontsynonym [\typescriptprefix{n:\typescripttwo}-Regular]        [file:texgyre\typescriptprefix{f:\typescripttwo}-regular]    [features=default]
    \definefontsynonym [\typescriptprefix{n:\typescripttwo}-Italic]         [file:texgyre\typescriptprefix{f:\typescripttwo}-italic]     [features=default]
    \definefontsynonym [\typescriptprefix{n:\typescripttwo}-Bold]           [file:texgyre\typescriptprefix{f:\typescripttwo}-bold]       [features=default]
    \definefontsynonym [\typescriptprefix{n:\typescripttwo}-BoldItalic]     [file:texgyre\typescriptprefix{f:\typescripttwo}-bolditalic] [features=default]
    \definefontsynonym [\typescriptprefix{n:\typescripttwo}-Caps]           [file:texgyre\typescriptprefix{f:\typescripttwo}-regular]    [features=oldstyle]
    \definefontsynonym [\typescriptprefix{n:\typescripttwo}-ItalicCaps]     [file:texgyre\typescriptprefix{f:\typescripttwo}-italic]     [features=oldstyle]
    \definefontsynonym [\typescriptprefix{n:\typescripttwo}-BoldCaps]       [file:texgyre\typescriptprefix{f:\typescripttwo}-bold]       [features=oldstyle]
    \definefontsynonym [\typescriptprefix{n:\typescripttwo}-BoldItalicCaps] [file:texgyre\typescriptprefix{f:\typescripttwo}-bolditalic] [features=oldstyle]
    \definefontsynonym [\typescriptprefix{n:\typescripttwo}-Slanted]        [\typescriptprefix{n:\typescripttwo}-Italic]                 [features=default]
    \definefontsynonym [\typescriptprefix{n:\typescripttwo}-BoldSlanted]    [\typescriptprefix{n:\typescripttwo}-BoldItalic]             [features=default]
\stoptypescript

\starttypescript [serif] [pagella,termes,bonum,schola,chorus] [name]
    \definefontsynonym [Serif]                [\typescriptprefix{n:\typescripttwo}-Regular]     [features=default]
    \definefontsynonym [SerifItalic]          [\typescriptprefix{n:\typescripttwo}-Italic]      [features=default]
    \definefontsynonym [SerifBold]            [\typescriptprefix{n:\typescripttwo}-Bold]        [features=default]
    \definefontsynonym [SerifBoldItalic]      [\typescriptprefix{n:\typescripttwo}-BoldItalic]  [features=default]
    \definefontsynonym [SerifCaps]            [\typescriptprefix{n:\typescripttwo}-Caps]        [features=smallcaps]
    \definefontsynonym [SerifSlanted]         [\typescriptprefix{n:\typescripttwo}-Slanted]     [features=default]
    \definefontsynonym [SerifBoldSlanted]     [\typescriptprefix{n:\typescripttwo}-BoldSlanted] [features=default]

    \definefontvariant [Serif][osf][Caps]
    \definefontvariant [Serif][sc] [Caps]

    \definefontsynonym [SerifRegular]         [\typescriptprefix{n:\typescripttwo}-Regular]        [features=default]
    \definefontsynonym [SerifRegularCaps]     [\typescriptprefix{n:\typescripttwo}-Caps]           [features=smallcaps]
    \definefontsynonym [SerifItalicCaps]      [\typescriptprefix{n:\typescripttwo}-ItalicCaps]     [features=smallcaps]
    \definefontsynonym [SerifBoldCaps]        [\typescriptprefix{n:\typescripttwo}-BoldCaps]       [features=smallcaps]
    \definefontsynonym [SerifBoldItalicCaps]  [\typescriptprefix{n:\typescripttwo}-BoldItalicCaps] [features=smallcaps]
    \definefontsynonym [SerifCapsCaps]        [\typescriptprefix{n:\typescripttwo}-Caps]           [features=smallcaps]
    \definefontsynonym [SerifSlantedCaps]     [\typescriptprefix{n:\typescripttwo}-ItalicCaps]     [features=smallcaps]
    \definefontsynonym [SerifBoldSlantedCaps] [\typescriptprefix{n:\typescripttwo}-BoldItalicCaps] [features=smallcaps]
\stoptypescript

\starttypescript [sans] [heros,adventor] [name]
    \definefontsynonym [Sans]                [\typescriptprefix{n:\typescripttwo}-Regular]     [features=default]
    \definefontsynonym [SansItalic]          [\typescriptprefix{n:\typescripttwo}-Italic]      [features=default]
    \definefontsynonym [SansBold]            [\typescriptprefix{n:\typescripttwo}-Bold]        [features=default]
    \definefontsynonym [SansBoldItalic]      [\typescriptprefix{n:\typescripttwo}-BoldItalic]  [features=default]
    \definefontsynonym [SansCaps]            [\typescriptprefix{n:\typescripttwo}-Caps]        [features=smallcaps]
    \definefontsynonym [SansSlanted]         [\typescriptprefix{n:\typescripttwo}-Slanted]     [features=default]
    \definefontsynonym [SansBoldSlanted]     [\typescriptprefix{n:\typescripttwo}-BoldSlanted] [features=default]

    \definefontvariant [Sans][osf][Caps]
    \definefontvariant [Sans][sc] [Caps]

    \definefontsynonym [SansRegular]         [\typescriptprefix{n:\typescripttwo}-Regular]        [features=default]
    \definefontsynonym [SansRegularCaps]     [\typescriptprefix{n:\typescripttwo}-Caps]           [features=smallcaps]
    \definefontsynonym [SansItalicCaps]      [\typescriptprefix{n:\typescripttwo}-ItalicCaps]     [features=smallcaps]
    \definefontsynonym [SansBoldCaps]        [\typescriptprefix{n:\typescripttwo}-BoldCaps]       [features=smallcaps]
    \definefontsynonym [SansBoldItalicCaps]  [\typescriptprefix{n:\typescripttwo}-BoldItalicCaps] [features=smallcaps]
    \definefontsynonym [SansCapsCaps]        [\typescriptprefix{n:\typescripttwo}-Caps]           [features=smallcaps]
    \definefontsynonym [SansSlantedCaps]     [\typescriptprefix{n:\typescripttwo}-ItalicCaps]     [features=smallcaps]
    \definefontsynonym [SansBoldSlantedCaps] [\typescriptprefix{n:\typescripttwo}-BoldItalicCaps] [features=smallcaps]
\stoptypescript

\starttypescript [mono] [cursor] [name]
    \definefontsynonym [Mono]                [\typescriptprefix{n:\typescripttwo}-Regular]
    \definefontsynonym [MonoItalic]          [\typescriptprefix{n:\typescripttwo}-Italic]
    \definefontsynonym [MonoBold]            [\typescriptprefix{n:\typescripttwo}-Bold]
    \definefontsynonym [MonoBoldItalic]      [\typescriptprefix{n:\typescripttwo}-BoldItalic]
    \definefontsynonym [MonoSlanted]         [MonoItalic]
    \definefontsynonym [MonoBoldSlanted]     [MonoBoldItalic]
\stoptypescript

%D Here we overload the older (URW) fonts.

% TeXGyrePagella
%
% qplr  TeXGyrePagella-Regular
% qplri TeXGyrePagella-Italic
% qplb  TeXGyrePagella-Bold
% qplbi TeXGyrePagella-BoldItalic

\starttypescript [serif] [palatino,pagella]
  \definefontsynonym [Palatino]             [file:texgyrepagella-regular]    [features=default]
  \definefontsynonym [Palatino-Italic]      [file:texgyrepagella-italic]     [features=default]
  \definefontsynonym [Palatino-Bold]        [file:texgyrepagella-bold]       [features=default]
  \definefontsynonym [Palatino-BoldItalic]  [file:texgyrepagella-bolditalic] [features=default]
  \definefontsynonym [Palatino-Caps]        [file:texgyrepagella-regular]    [features=smallcaps]
  \definefontsynonym [Palatino-Slanted]     [Palatino-Italic]
  \definefontsynonym [Palatino-BoldSlanted] [Palatino-BoldItalic]
\stoptypescript

% TeXGyreTermes
%
% qtmr  TeXGyreTermes-Regular
% qtmri TeXGyreTermes-Italic
% qtmb  TeXGyreTermes-Bold
% qtmbi TeXGyreTermes-BoldItalic

\starttypescript [serif] [times]
  \definefontsynonym [Times-Roman]       [file:texgyretermes-regular]    [features=default]
  \definefontsynonym [Times-Italic]      [file:texgyretermes-italic]     [features=default]
  \definefontsynonym [Times-Bold]        [file:texgyretermes-bold]       [features=default]
  \definefontsynonym [Times-BoldItalic]  [file:texgyretermes-bolditalic] [features=default]
  \definefontsynonym [Times-Caps]        [file:texgyretermes-regular]    [features=smallcaps]
  \definefontsynonym [Times-Slanted]     [Times-Italic]
  \definefontsynonym [Times-BoldSlanted] [Times-BoldItalic]
\stoptypescript

% TeXGyreHeros
%
% qtmr  TeXGyreHeros-Regular
% qtmri TeXGyreHeros-Italic
% qtmb  TeXGyreHeros-Bold
% qtmbi TeXGyreHeros-BoldItalic

\starttypescript [sans] [helvetica]
  \definefontsynonym [Helvetica]             [file:texgyreheros-regular]    [features=default]
  \definefontsynonym [Helvetica-Oblique]     [file:texgyreheros-italic]     [features=default]
  \definefontsynonym [Helvetica-Bold]        [file:texgyreheros-bold]       [features=default]
  \definefontsynonym [Helvetica-BoldOblique] [file:texgyreheros-bolditalic] [features=default]
  \definefontsynonym [Helvetica-Caps]        [file:texgyreheros-regular]    [features=smallcaps]
\stoptypescript

% TeXGyreBonum
%
% qtmr  TeXGyreBonum-Regular
% qtmri TeXGyreBonum-Italic
% qtmb  TeXGyreBonum-Bold
% qtmbi TeXGyreBonum-BoldItalic

\starttypescript [serif] [bookman]
  \definefontsynonym [Bookman-Light]           [file:texgyrebonum-regular]    [features=default]
  \definefontsynonym [Bookman-LightItalic]     [file:texgyrebonum-italic]     [features=default]
  \definefontsynonym [Bookman-DemiBold]        [file:texgyrebonum-bold]       [features=default]
  \definefontsynonym [Bookman-DemiBoldItalic]  [file:texgyrebonum-bolditalic] [features=default]
  \definefontsynonym [Bookman-Light-Caps]      [file:texgyrebonum-regular]    [features=smallcaps]
  \definefontsynonym [Bookman-LightSlanted]    [Bookman-LightItalic]          [features=default]
  \definefontsynonym [Bookman-DemiBoldSlanted] [Bookman-DemiBoldItalic]       [features=default]
\stoptypescript

% TeXGyreScola
%
% qcsr  TeXGyreSchola-Regular
% qcsri TeXGyreSchola-Italic
% qcsb  TeXGyreSchola-Bold
% qcsbi TeXGyreSchola-BoldItalic

\starttypescript [serif] [schoolbook]
  \definefontsynonym [Schoolbook-Roman]       [file:texgyreschola-regular]    [features=default]
  \definefontsynonym [Schoolbook-Italic]      [file:texgyreschola-italic]     [features=default]
  \definefontsynonym [Schoolbook-Bold]        [file:texgyreschola-bold]       [features=default]
  \definefontsynonym [Schoolbook-BoldItalic]  [file:texgyreschola-bolditalic] [features=default]
  \definefontsynonym [Schoolbook-Roman-Caps]  [file:texgyreschola-regular]    [features=smallcaps]
  \definefontsynonym [Schoolbook-Slanted]     [Schoolbook-Italic]             [features=default]
  \definefontsynonym [Schoolbook-BoldSlanted] [Schoolbook-BoldItalic]         [features=default]
\stoptypescript

% TeXGyreAdventor
%
% qagr  TeXGyreAdventor-Regular
% qagri TeXGyreAdventor-Italic
% qagb  TeXGyreAdventor-Bold
% qagbi TeXGyreAdventor-BoldItalic

% TeXGyreCursor
%
% crgr  TeXGyreCursor-Regular
% crgri TeXGyreCursor-Italic
% crgb  TeXGyreCursor-Bold
% crgbi TeXGyreCursor-BoldItalic

\starttypescript [mono] [courier] [name]
    \definefontsynonym [Courier]             [file:texgyrecursor-regular]    [features=default]
    \definefontsynonym [Courier-Bold]        [file:texgyrecursor-bold]       [features=default]
    \definefontsynonym [Courier-Oblique]     [file:texgyrecursor-italic]     [features=default]
    \definefontsynonym [Courier-BoldOblique] [file:texgyrecursor-bolditalic] [features=default]
    \fakecontrolspace
\stoptypescript

% TeXGyreChorus
%
% qzcr  TeXGyreChorus-Regular

\starttypescript [calligraphy] [chancery]
    \definefontsynonym [Chancery] [file:texgyrechorus-mediumitalic] [features=default]
    \definefontsynonym [texgyrechorus-regular] [file:texgyrechorus-mediumitalic]
\stoptypescript

% Math Times (tx)

\starttypescript [math] [times] [all]
    \definefontsynonym [Times-Roman-Upright]     [txr]
    \definefontsynonym [Times-Roman-Italic]      [txi]
    \definefontsynonym [Times-Roman-Slanted]     [txsl]
    \definefontsynonym [Times-Roman-Caps]        [txsc]
    \definefontsynonym [Times-Companion-Upright] [tcxr]
    \definefontsynonym [Times-Companion-Italic]  [tcxi]
    \definefontsynonym [Times-Companion-Slanted] [tcxsl]
    \definefontsynonym [Times-Math-Italic]       [txmi]
    \definefontsynonym [Times-Math-Symbols]      [txsy]
    \definefontsynonym [Times-Math-Extension]    [txex]
    \definefontsynonym [Times-Math-SymbolsA]     [txsya]
    \definefontsynonym [Times-Math-SymbolsB]     [txsyb]
    \definefontsynonym [Times-Math-SymbolsC]     [txsyc]
    \definefontsynonym [Times-Math-Italic-A]     [txmia]
    \definefontsynonym [Times-Math-Extension-A]  [txexa]

    \loadmapfile[original-youngryu-tx.map]
    \usemathcollection[default]
\stoptypescript

% Palatino Math (PX)

\starttypescript [math] [palatino] [all]
    \definefontsynonym [Palatino-Roman-Upright]     [pxr]
    \definefontsynonym [Palatino-Roman-Italic]      [pxi]
    \definefontsynonym [Palatino-Roman-Slanted]     [pxsl]
    \definefontsynonym [Palatino-Roman-Caps]        [pxsc]
    \definefontsynonym [Palatino-Companion-Upright] [pcxr]
    \definefontsynonym [Palatino-Companion-Italic]  [pcxi]
    \definefontsynonym [Palatino-Companion-Slanted] [pcxsl]
    \definefontsynonym [Palatino-Math-Italic]       [pxmi]
    \definefontsynonym [Palatino-Math-Symbols]      [pxsy]
    \definefontsynonym [Palatino-Math-Extension]    [pxex]
    \definefontsynonym [Palatino-Math-SymbolsA]     [pxsya]
    \definefontsynonym [Palatino-Math-SymbolsB]     [pxsyb]
    \definefontsynonym [Palatino-Math-SymbolsC]     [pxsyc]
    \definefontsynonym [Palatino-Math-Italic-A]     [pxmia]
    \definefontsynonym [Palatino-Math-Extension-A]  [pxexa]

    \loadmapfile[original-youngryu-px.map]
    \usemathcollection[default]
\stoptypescript

% Antykwa Torunska (GUST)

\starttypescript [serif] [antykwa-torunska,antykwa-torunska-light,antykwa-torunska-cond,antykwa-torunska-lightcond]
    \definefontsynonym [AntykwaTorunska-Regular]           [file:AntykwaTorunska-Regular]          [features=default]
    \definefontsynonym [AntykwaTorunska-Italic]            [file:AntykwaTorunska-Italic]           [features=default]
    \definefontsynonym [AntykwaTorunska-Bold]              [file:AntykwaTorunska-Bold]             [features=default]
    \definefontsynonym [AntykwaTorunska-BoldItalic]        [file:AntykwaTorunska-BoldItalic]       [features=default]
    \definefontsynonym [AntykwaTorunska-Light]             [file:AntykwaTorunskaLight-Regular]     [features=default]
    \definefontsynonym [AntykwaTorunska-LightItalic]       [file:AntykwaTorunskaLight-Italic]      [features=default]
    \definefontsynonym [AntykwaTorunska-Medium]            [file:AntykwaTorunskaMed-Regular]       [features=default]
    \definefontsynonym [AntykwaTorunska-MedItalic]         [file:AntykwaTorunskaMed-Italic]        [features=default]
    \definefontsynonym [AntykwaTorunska-CondRegular]       [file:AntykwaTorunskaCond-Regular]      [features=default]
    \definefontsynonym [AntykwaTorunska-CondItalic]        [file:AntykwaTorunskaCond-Italic]       [features=default]
    \definefontsynonym [AntykwaTorunska-CondBold]          [file:AntykwaTorunskaCond-Bold]         [features=default]
    \definefontsynonym [AntykwaTorunska-CondBoldItalic]    [file:AntykwaTorunskaCond-BoldItalic]   [features=default]
    \definefontsynonym [AntykwaTorunska-CondLight]         [file:AntykwaTorunskaCondLight-Regular] [features=default]
    \definefontsynonym [AntykwaTorunska-CondLightItalic]   [file:AntykwaTorunskaCondLight-Italic]  [features=default]
    \definefontsynonym [AntykwaTorunska-CondMedium]        [file:AntykwaTorunskaCondMed-Regular]   [features=default]
    \definefontsynonym [AntykwaTorunska-CondMedItalic]     [file:AntykwaTorunskaCondMed-Italic]    [features=default]

    \definefontsynonym [AntykwaTorunska-Cap]               [file:AntykwaTorunska-Regular]          [features=smallcaps]
    \definefontsynonym [AntykwaTorunska-ItalicCap]         [file:AntykwaTorunska-Italic]           [features=smallcaps]
    \definefontsynonym [AntykwaTorunska-BoldCap]           [file:AntykwaTorunska-Bold]             [features=smallcaps]
    \definefontsynonym [AntykwaTorunska-BoldItalicCap]     [file:AntykwaTorunska-BoldItalic]       [features=smallcaps]
    \definefontsynonym [AntykwaTorunska-LightCap]          [file:AntykwaTorunskaLight-Regular]     [features=smallcaps]
    \definefontsynonym [AntykwaTorunska-LightItalicCap]    [file:AntykwaTorunskaLight-Italic]      [features=smallcaps]
    \definefontsynonym [AntykwaTorunska-MediumCap]         [file:AntykwaTorunskaMed-Regular]       [features=smallcaps]
    \definefontsynonym [AntykwaTorunska-MedItalicCap]      [file:AntykwaTorunskaMed-Italic]        [features=smallcaps]
    \definefontsynonym [AntykwaTorunska-CondCap]           [file:AntykwaTorunskaCond-Regular]      [features=smallcaps]
    \definefontsynonym [AntykwaTorunska-CondItalicCap]     [file:AntykwaTorunskaCond-Italic]       [features=smallcaps]
    \definefontsynonym [AntykwaTorunska-CondBoldCap]       [file:AntykwaTorunskaCond-Bold]         [features=smallcaps]
    \definefontsynonym [AntykwaTorunska-CondBoldItalicCap] [file:AntykwaTorunskaCond-BoldItalic]   [features=smallcaps]
    \definefontsynonym [AntykwaTorunska-CondLightCap]      [file:AntykwaTorunskaCondLight-Regular] [features=smallcaps]
    \definefontsynonym [AntykwaTorunska-CondLightItalicCap][file:AntykwaTorunskaCondLight-Italic]  [features=smallcaps]
    \definefontsynonym [AntykwaTorunska-CondMediumCap]     [file:AntykwaTorunskaCondMed-Regular]   [features=smallcaps]
    \definefontsynonym [AntykwaTorunska-CondMedItalicCap]  [file:AntykwaTorunskaCondMed-Italic]    [features=smallcaps]
\stoptypescript

\starttypescript [math] [antykwa-torunska] [default]
    \definefontsynonym [AntykwaTorunska-Math-Letters-Regular]       [rm-anttr]
    \definefontsynonym [AntykwaTorunska-Math-Letters-Italic]        [mi-anttri]
    \definefontsynonym [AntykwaTorunska-Math-Symbols-Regular]       [sy-anttrz]
    \definefontsynonym [AntykwaTorunska-Math-Extension-Regular]     [ex-anttr]
\stoptypescript

\starttypescript [math] [antykwa-torunska-light] [default]
    \definefontsynonym [AntykwaTorunska-Math-Letters-Light]       [rm-anttl]
    \definefontsynonym [AntykwaTorunska-Math-Letters-LightItalic] [mi-anttli]
    \definefontsynonym [AntykwaTorunska-Math-Symbols-Light]       [sy-anttlz]
    \definefontsynonym [AntykwaTorunska-Math-Extension-Light]     [ex-anttl]
\stoptypescript

\starttypescript [math] [antykwa-torunska-cond] [default]
    \definefontsynonym [AntykwaTorunska-Math-Letters-CondRegular]       [rm-anttcr]
    \definefontsynonym [AntykwaTorunska-Math-Letters-CondItalic]        [mi-anttcri]
    \definefontsynonym [AntykwaTorunska-Math-Symbols-CondRegular]       [sy-anttcrz]
    \definefontsynonym [AntykwaTorunska-Math-Extension-CondRegular]     [ex-anttcr]
\stoptypescript

\starttypescript [math] [antykwa-torunska-lightcond] [default]
    \definefontsynonym [AntykwaTorunska-Math-Letters-CondLight]       [rm-anttcl]
    \definefontsynonym [AntykwaTorunska-Math-Letters-CondLightItalic] [mi-anttcli]
    \definefontsynonym [AntykwaTorunska-Math-Symbols-CondLight]       [sy-anttclz]
    \definefontsynonym [AntykwaTorunska-Math-Extension-CondLight]     [ex-anttcl]
\stoptypescript

\starttypescript [math] [antykwa-torunska,antykwa-torunska-light,antykwa-torunska-cond,antykwa-torunska-lightcond]
    \usemathcollection[default]
    \loadmapfile[antt-rm.map]
    \loadmapfile[antt-mi.map]
    \loadmapfile[antt-sy.map]
    \loadmapfile[antt-ex.map]
\stoptypescript

% Antykwa Poltawskiego (GUST)

\starttypescript [serif] [antykwa-poltawskiego]
    \definefontsynonym [AntykwaPoltawskiego-Regular]    [antpr]
    \definefontsynonym [AntykwaPoltawskiego-Bold]       [antpb]
    \definefontsynonym [AntykwaPoltawskiego-Italic]     [antpri]
    \definefontsynonym [AntykwaPoltawskiego-BoldItalic] [antpbi]
\stoptypescript

% Iwona (JMN)

% maybe this will change in Iwona-Math-Letters and Iwona-Math-Letters-Italic

% These names are a depressing mess. They have changed over time and are
% still not consistent. I'd expect Bold-Regular and Bold-Italic.

\starttypescript [sans] [iwona-light,iwona,iwona-medium,iwona-heavy,iwona-light-cond,iwona-cond,iwona-medium-cond,iwona-heavy-cond]

    \definefontsynonym [Iwona-Regular]               [file:Iwona-Regular]                [features=default]
    \definefontsynonym [Iwona-Italic]                [file:Iwona-Italic]                 [features=default]
    \definefontsynonym [Iwona-Bold]                  [file:Iwona-Bold]                   [features=default]
    \definefontsynonym [Iwona-BoldItalic]            [file:Iwona-BoldItalic]             [features=default]
    \definefontsynonym [Iwona-Light-Regular]         [file:IwonaLight-Regular]           [features=default]
    \definefontsynonym [Iwona-Light-Italic]          [file:IwonaLight-Italic]            [features=default]
    \definefontsynonym [Iwona-Medium-Regular]        [file:IwonaMedium-Regular]          [features=default]
    \definefontsynonym [Iwona-Medium-Italic]         [file:IwonaMedium-Italic]           [features=default]
    \definefontsynonym [Iwona-Heavy-Regular]         [file:IwonaHeavy-Regular]           [features=default]
    \definefontsynonym [Iwona-Heavy-Italic]          [file:IwonaHeavy-Italic]            [features=default]

    \definefontsynonym [Iwona-CapsRegular]           [file:Iwona-Regular]                [features=smallcaps]
    \definefontsynonym [Iwona-CapsItalic]            [file:Iwona-Italic]                 [features=smallcaps]
    \definefontsynonym [Iwona-CapsBold]              [file:Iwona-Bold]                   [features=smallcaps]
    \definefontsynonym [Iwona-CapsBoldItalic]        [file:Iwona-BoldItalic]             [features=smallcaps]
    \definefontsynonym [Iwona-CapsLight]             [file:IwonaLight-Regular]           [features=smallcaps]
    \definefontsynonym [Iwona-CapsLight-Italic]      [file:IwonaLight-Italic]            [features=smallcaps]
    \definefontsynonym [Iwona-CapsMedium]            [file:IwonaMedium-Regular]          [features=smallcaps]
    \definefontsynonym [Iwona-CapsMedium-Italic]     [file:IwonaMedium-Italic]           [features=smallcaps]
    \definefontsynonym [Iwona-CapsHeavy]             [file:IwonaHeavy-Regular]           [features=smallcaps]
    \definefontsynonym [Iwona-CapsHeavy-Italic]      [file:IwonaHeavy-Italic]            [features=smallcaps]

    \definefontsynonym [Iwona-CondRegular]           [file:IwonaCond-Regular]            [features=default]
    \definefontsynonym [Iwona-CondItalic]            [file:IwonaCond-Italic]             [features=default]
    \definefontsynonym [Iwona-CondBold]              [file:IwonaCond-Bold]               [features=default]
    \definefontsynonym [Iwona-CondBoldItalic]        [file:IwonaCond-BoldItalic]         [features=default]
    \definefontsynonym [Iwona-CondLight-Regular]     [file:IwonaCondLight-Regular]       [features=default]
    \definefontsynonym [Iwona-CondLight-Italic]      [file:IwonaCondLight-Italic]        [features=default]
    \definefontsynonym [Iwona-CondMedium-Regular]    [file:IwonaCondMedium-Regular]      [features=default]
    \definefontsynonym [Iwona-CondMedium-Italic]     [file:IwonaCondMedium-Italic]       [features=default]
    \definefontsynonym [Iwona-CondHeavy-Regular]     [file:IwonaCondHeavy-Regular]       [features=default]
    \definefontsynonym [Iwona-CondHeavy-Italic]      [file:IwonaCondHeavy-Italic]        [features=default]

    \definefontsynonym [Iwona-CapsCondRegular]       [file:IwonaCond-Regular]            [features=smallcaps]
    \definefontsynonym [Iwona-CapsCondItalic]        [file:IwonaCond-Italic]             [features=smallcaps]
    \definefontsynonym [Iwona-CapsCondBold]          [file:IwonaCond-Bold]               [features=smallcaps]
    \definefontsynonym [Iwona-CapsCondBoldItalic]    [file:IwonaCond-BoldItalic]         [features=smallcaps]
    \definefontsynonym [Iwona-CapsCondLight-Regular] [file:IwonaCondLight-Regular]       [features=smallcaps]
    \definefontsynonym [Iwona-CapsCondLight-Italic]  [file:IwonaCondLight-Italic]        [features=smallcaps]
    \definefontsynonym [Iwona-CapsCondMedium-Regular][file:IwonaCondMedium-Regular]      [features=smallcaps]
    \definefontsynonym [Iwona-CapsCondMedium-Italic] [file:IwonaCondMedium-Italic]       [features=smallcaps]
    \definefontsynonym [Iwona-CapsCondHeavy-Regular] [file:IwonaCondHeavy-Regular]       [features=smallcaps]
    \definefontsynonym [Iwona-CapsCondHeavy-Italic]  [file:IwonaCondHeavy-Italic]        [features=smallcaps]

\stoptypescript

\starttypescript [math] [iwona] [default]
    \definefontsynonym [Iwona-Math-Letters-Regular]       [rm-iwonar]
    \definefontsynonym [Iwona-Math-Letters-Italic]        [mi-iwonari]
    \definefontsynonym [Iwona-Math-Symbols-Regular]       [sy-iwonarz]
    \definefontsynonym [Iwona-Math-Extension-Regular]     [ex-iwonar]
\stoptypescript

\starttypescript [math] [iwona-light] [default]
    \definefontsynonym [Iwona-Math-Letters-Light-Regular] [rm-iwonal]
    \definefontsynonym [Iwona-Math-Letters-Light-Italic]  [mi-iwonali]
    \definefontsynonym [Iwona-Math-Symbols-Light]         [sy-iwonalz]
    \definefontsynonym [Iwona-Math-Extension-Light]       [ex-iwonal]
\stoptypescript

\starttypescript [math] [iwona-medium] [default]
    \definefontsynonym [Iwona-Math-Letters-Medium-Regular][rm-iwonam]
    \definefontsynonym [Iwona-Math-Letters-Medium-Italic] [mi-iwonami]
    \definefontsynonym [Iwona-Math-Symbols-Medium]        [sy-iwonamz]
    \definefontsynonym [Iwona-Math-Extension-Medium]      [ex-iwonam]
\stoptypescript

\starttypescript [math] [iwona-heavy] [default]
    \definefontsynonym [Iwona-Math-Letters-Heavy-Regular] [rm-iwonah]
    \definefontsynonym [Iwona-Math-Letters-Heavy-Italic]  [mi-iwonahi]
    \definefontsynonym [Iwona-Math-Symbols-Heavy]         [sy-iwonahz]
    \definefontsynonym [Iwona-Math-Extension-Heavy]       [ex-iwonah]
\stoptypescript

\starttypescript [math] [iwona,iwona-light,iwona-medium,iwona-heavy] [default]
    \usemathcollection[default]
    \loadmapfile[iwona-rm.map]
    \loadmapfile[iwona-mi.map]
    \loadmapfile[iwona-sy.map]
    \loadmapfile[iwona-ex.map]
\stoptypescript

% Kurier (JMN) / no open type fonts

\starttypescript [sans] [kurier-light,kurier,kurier-medium]
    \definefontsynonym[Kurier-Light]         [kurierl]
    \definefontsynonym[Kurier-Regular]       [kurierr]
    \definefontsynonym[Kurier-Medium]        [kurierm]
    \definefontsynonym[Kurier-Bold]          [kurierb]
    \definefontsynonym[Kurier-Heavy]         [kurierh]
    \definefontsynonym[Kurier-LightItalic]   [kurierli]
    \definefontsynonym[Kurier-Italic]        [kurierri]
    \definefontsynonym[Kurier-MediumItalic]  [kuriermi]
    \definefontsynonym[Kurier-BoldItalic]    [kurierbi]
    \definefontsynonym[Kurier-HeavyItalic]   [kurierhi]
\stoptypescript

\starttypescript [math] [kurier] [default]
    \definefontsynonym [Kurier-Math-Letters-Regular]       [rm-kurierr]
    \definefontsynonym [Kurier-Math-Letters-Italic]        [mi-kurierri]
    \definefontsynonym [Kurier-Math-Symbols-Regular]       [sy-kurierrz]
    \definefontsynonym [Kurier-Math-Extension-Regular]     [ex-kurierr]
\stoptypescript

\starttypescript [math] [kurier-light] [default]
    \definefontsynonym [Kurier-Math-Letters-Light-Regular] [rm-kurierl]
    \definefontsynonym [Kurier-Math-Letters-Light-Italic]  [mi-kurierli]
    \definefontsynonym [Kurier-Math-Symbols-Light]         [sy-kurierlz]
    \definefontsynonym [Kurier-Math-Extension-Light]       [ex-kurierl]
\stoptypescript

\starttypescript [math] [kurier-medium] [default]
    \definefontsynonym [Kurier-Math-Letters-Medium-Regular] [rm-kurierm]
    \definefontsynonym [Kurier-Math-Letters-Medium-Italic]  [mi-kuriermi]
    \definefontsynonym [Kurier-Math-Symbols-Medium-Regular] [sy-kuriermz]
    \definefontsynonym [Kurier-Math-Extension-Medium]       [ex-kurierm]
\stoptypescript

\starttypescript [math] [kurier,kurier-light,kurier-medium] [default]
    \loadmapfile[kurier-rm.map]
    \loadmapfile[kurier-mi.map]
    \loadmapfile[kurier-sy.map]
    \loadmapfile[kurier-ex.map]
\stoptypescript

% Whatever else we need:

\starttypescript
  \definefontsynonym [ZapfDingbats]          [uzdr]
  \definefontsynonym [RalfSmithFormalScript] [rsfs10]
  \definefontsynonym [MartinVogel]           [fmvr8x]
\stoptypescript

% Temp here

\starttypescript [serif] [charter]
    \definefontsynonym [Charter-Roman]       [name:CharterBT-Roman]        % or: [bchr8a]
    \definefontsynonym [Charter-Italic]      [name:CharterBT-Italic]       % or: [bchri8a]
    \definefontsynonym [Charter-Bold]        [name:CharterBT-Bold]         % or: [bchb8a]
    \definefontsynonym [Charter-BoldItalic]  [name:CharterBT-BoldItalic]   % or: [bchbi8a]
    \definefontsynonym [Charter-Slanted]     [name:CharterBT-Italic]       % or: [bchri8a]
    \definefontsynonym [Charter-BoldSlanted] [name:CharterBT-BoldItalic]   % or: [bchbi8a]
    \definefontsynonym [Charter-Roman-Caps]  [Charter-Roman]               % not present
\stoptypescript

\stoptypescriptcollection

\endinput

[-- Attachment #3: Type: text/plain, Size: 487 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://tex.aanhet.net
archive  : https://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________

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

* Re: Some questions about TeX Gyre support in minimals
  2008-10-23 19:07   ` Oleg Kolosov
@ 2008-10-23 22:53     ` Marcin Borkowski
  2008-10-23 23:10       ` Mojca Miklavec
  2008-10-24  7:04       ` Hans Hagen
  0 siblings, 2 replies; 10+ messages in thread
From: Marcin Borkowski @ 2008-10-23 22:53 UTC (permalink / raw)
  To: mailing list for ConTeXt users

Dnia Thu, Oct 23, 2008 at 11:07:46PM +0400, Oleg Kolosov napisa&#322;(a):
> 
> Attached the resulting type-otf.tex. Maybe this'll save a few minutes for someone.

Wow!  I don't have the time to test it now with Polish, but I'll do it
soon probably.  I guess it is usable only in MkIV...?  If yes, I'll have
to switch;).

Hans, any chance to have this code included someday soon in the
minimals?

> Regards,
> Oleg Kolosov

Greets

-- 
Marcin Borkowski (http://mbork.pl)
___________________________________________________________________________________
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  : https://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________


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

* Re: Some questions about TeX Gyre support in minimals
  2008-10-23 22:53     ` Marcin Borkowski
@ 2008-10-23 23:10       ` Mojca Miklavec
  2008-10-24  7:04       ` Hans Hagen
  1 sibling, 0 replies; 10+ messages in thread
From: Mojca Miklavec @ 2008-10-23 23:10 UTC (permalink / raw)
  To: mailing list for ConTeXt users

On Fri, Oct 24, 2008 at 12:53 AM, Marcin Borkowski  wrote:
> Dnia Thu, Oct 23, 2008 at 11:07:46PM +0400, Oleg Kolosov napisa&#322;(a):
>>
>> Attached the resulting type-otf.tex. Maybe this'll save a few minutes for someone.
>
> Wow!  I don't have the time to test it now with Polish, but I'll do it
> soon probably.  I guess it is usable only in MkIV...?  If yes, I'll have
> to switch;).

If there are problems with mkii, type-gyr.tex should be fixed as well.
Just point to the problems.

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  : https://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________


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

* Re: Some questions about TeX Gyre support in minimals
  2008-10-23 22:53     ` Marcin Borkowski
  2008-10-23 23:10       ` Mojca Miklavec
@ 2008-10-24  7:04       ` Hans Hagen
  1 sibling, 0 replies; 10+ messages in thread
From: Hans Hagen @ 2008-10-24  7:04 UTC (permalink / raw)
  To: mailing list for ConTeXt users

Marcin Borkowski wrote:
> Dnia Thu, Oct 23, 2008 at 11:07:46PM +0400, Oleg Kolosov napisa&#322;(a):
>> Attached the resulting type-otf.tex. Maybe this'll save a few minutes for someone.
> 
> Wow!  I don't have the time to test it now with Polish, but I'll do it
> soon probably.  I guess it is usable only in MkIV...?  If yes, I'll have
> to switch;).
> 
> Hans, any chance to have this code included someday soon in the
> minimals?

i just wait till mojca sends me a new file since she's managing these 
polish treasures

Hans


-----------------------------------------------------------------
                                           Hans Hagen | PRAGMA ADE
               Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
      tel: 038 477 53 69 | fax: 038 477 53 74 | www.pragma-ade.com
                                              | 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://tex.aanhet.net
archive  : https://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________


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

end of thread, other threads:[~2008-10-24  7:04 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-10-22 22:31 Some questions about TeX Gyre support in minimals Oleg Kolosov
2008-10-23  1:10 ` Mojca Miklavec
2008-10-23 19:07   ` Oleg Kolosov
2008-10-23 22:53     ` Marcin Borkowski
2008-10-23 23:10       ` Mojca Miklavec
2008-10-24  7:04       ` Hans Hagen
2008-10-23  6:51 ` Wolfgang Schuster
2008-10-23 13:33   ` Aditya Mahajan
2008-10-23 13:43     ` Wolfgang Schuster
2008-10-23 14:33     ` Hans Hagen

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).