ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* Using Gill Sans on macOS
@ 2021-02-22 15:14 Gerben Wierda
  2021-02-22 16:59 ` Henning Hraban Ramm
  0 siblings, 1 reply; 3+ messages in thread
From: Gerben Wierda @ 2021-02-22 15:14 UTC (permalink / raw)
  To: mailing list for ConTeXt users


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

I’m normall using Optima Nova on my system, e.g. by defining a font like this:


\definefontfamily
    [archimate]
    [ss]
    [Optima nova LT Pro]
    [tf=style:Medium,
     bf=style:Bold,
     it=style:Medium Italic,
     bi=style:Bold Italic]
\setupbodyfont[archimate]

I would like to experiment with Gill Sans, but that fails with

fonts           > defining > unable to define 'GillSans.ttc' as 'archimate-14pt-ss-tf-0--0'

It is here:

/System/Library/Fonts/Supplemental/GillSans.ttc

What should I do to be able to use that font?

Gerben Wierda (LinkedIn <https://www.linkedin.com/in/gerbenwierda>)
R&A Enterprise Architecture <https://ea.rna.nl/> (main site)
Book: Chess and the Art of Enterprise Architecture <https://ea.rna.nl/the-book/>
Book: Mastering ArchiMate <https://ea.rna.nl/the-book-edition-iii/>


[-- Attachment #1.2: Type: text/html, Size: 4741 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] 3+ messages in thread

* Re: Using Gill Sans on macOS
  2021-02-22 15:14 Using Gill Sans on macOS Gerben Wierda
@ 2021-02-22 16:59 ` Henning Hraban Ramm
  2021-02-22 17:34   ` Gerben Wierda
  0 siblings, 1 reply; 3+ messages in thread
From: Henning Hraban Ramm @ 2021-02-22 16:59 UTC (permalink / raw)
  To: mailing list for ConTeXt users



> Am 22.02.2021 um 16:14 schrieb Gerben Wierda <gerben.wierda@rna.nl>:
> 
> I’m normall using Optima Nova on my system, e.g. by defining a font like this:
> 
> 
> \definefontfamily
>     [archimate]
>     [ss]
>     [Optima nova LT Pro]
>     [tf=style:Medium,
>      bf=style:Bold,
>      it=style:Medium Italic,
>      bi=style:Bold Italic]
> \setupbodyfont[archimate]
> 
> I would like to experiment with Gill Sans, but that fails with
> 
> fonts           > defining > unable to define 'GillSans.ttc' as 'archimate-14pt-ss-tf-0--0'
> 
> It is here:
> 
> /System/Library/Fonts/Supplemental/GillSans.ttc
> 
> What should I do to be able to use that font?

Hi Gerben!

Sometimes ConTeXt can’t find the subfonts in TTCs, e.g.:

$ mtxrun --script fonts --list --all --pattern=Gill
identifier            familyname   fontname              filename                      subfont   instances

gillsans              gillsans     gillsanslightitalic   /Library/Fonts/GillSans.ttc   9
gillsanslight         gillsans     gillsanslightitalic   /Library/Fonts/GillSans.ttc   9
gillsanslightitalic   gillsans     gillsanslightitalic   /Library/Fonts/GillSans.ttc   9


Only after
$ mtxrun --script fonts --reload --force
I got:

$ mtxrun --script fonts --list --all --pattern=Gill
identifier               familyname   fontname                 filename                      subfont   instances

gillsans                 gillsans     gillsans                 /Library/Fonts/GillSans.ttc   1
gillsansblack            gillsans     gillsansultrabold        /Library/Fonts/GillSans.ttc   7
gillsansbold             gillsans     gillsansbold             /Library/Fonts/GillSans.ttc   2
gillsansbolditalic       gillsans     gillsansbolditalic       /Library/Fonts/GillSans.ttc   4
gillsansitalic           gillsans     gillsansitalic           /Library/Fonts/GillSans.ttc   3
gillsanslight            gillsans     gillsanslight            /Library/Fonts/GillSans.ttc   8
gillsanslightitalic      gillsans     gillsanslightitalic      /Library/Fonts/GillSans.ttc   9
gillsansnormal           gillsans     gillsans                 /Library/Fonts/GillSans.ttc   1
gillsansregular          gillsans     gillsans                 /Library/Fonts/GillSans.ttc   1
gillsanssemibold         gillsans     gillsanssemibold         /Library/Fonts/GillSans.ttc   5
gillsanssemibolditalic   gillsans     gillsanssemibolditalic   /Library/Fonts/GillSans.ttc   6
gillsansultrabold        gillsans     gillsansultrabold        /Library/Fonts/GillSans.ttc   7

Please check this on your system, and then try the names of the first column.


Hraban
___________________________________________________________________________________
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] 3+ messages in thread

* Re: Using Gill Sans on macOS
  2021-02-22 16:59 ` Henning Hraban Ramm
@ 2021-02-22 17:34   ` Gerben Wierda
  0 siblings, 0 replies; 3+ messages in thread
From: Gerben Wierda @ 2021-02-22 17:34 UTC (permalink / raw)
  To: mailing list for ConTeXt users


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


> On 22 Feb 2021, at 17:59, Henning Hraban Ramm <texml@fiee.net> wrote:
> 
> 
> 
>> Am 22.02.2021 um 16:14 schrieb Gerben Wierda <gerben.wierda@rna.nl>:
>> 
>> I’m normall using Optima Nova on my system, e.g. by defining a font like this:
>> 
>> 
>> \definefontfamily
>>    [archimate]
>>    [ss]
>>    [Optima nova LT Pro]
>>    [tf=style:Medium,
>>     bf=style:Bold,
>>     it=style:Medium Italic,
>>     bi=style:Bold Italic]
>> \setupbodyfont[archimate]
>> 
>> I would like to experiment with Gill Sans, but that fails with
>> 
>> fonts           > defining > unable to define 'GillSans.ttc' as 'archimate-14pt-ss-tf-0--0'
>> 
>> It is here:
>> 
>> /System/Library/Fonts/Supplemental/GillSans.ttc
>> 
>> What should I do to be able to use that font?
> 
> Hi Gerben!
> 
> Sometimes ConTeXt can’t find the subfonts in TTCs, e.g.:
> 
> $ mtxrun --script fonts --list --all --pattern=Gill
> identifier            familyname   fontname              filename                      subfont   instances
> 
> gillsans              gillsans     gillsanslightitalic   /Library/Fonts/GillSans.ttc   9
> gillsanslight         gillsans     gillsanslightitalic   /Library/Fonts/GillSans.ttc   9
> gillsanslightitalic   gillsans     gillsanslightitalic   /Library/Fonts/GillSans.ttc   9
> 
> 
> Only after
> $ mtxrun --script fonts --reload --force

Hi Henning!

Thanks, that was what I needed. Apparently, the update from macOS Mojave to macOS Catalina had moved the Gill Sans font so I had to do teh reload.

Gerben Wierda (LinkedIn <https://www.linkedin.com/in/gerbenwierda>)
R&A Enterprise Architecture <https://ea.rna.nl/> (main site)
Book: Chess and the Art of Enterprise Architecture <https://ea.rna.nl/the-book/>
Book: Mastering ArchiMate <https://ea.rna.nl/the-book-edition-iii/>



> I got:
> 
> $ mtxrun --script fonts --list --all --pattern=Gill
> identifier               familyname   fontname                 filename                      subfont   instances
> 
> gillsans                 gillsans     gillsans                 /Library/Fonts/GillSans.ttc   1
> gillsansblack            gillsans     gillsansultrabold        /Library/Fonts/GillSans.ttc   7
> gillsansbold             gillsans     gillsansbold             /Library/Fonts/GillSans.ttc   2
> gillsansbolditalic       gillsans     gillsansbolditalic       /Library/Fonts/GillSans.ttc   4
> gillsansitalic           gillsans     gillsansitalic           /Library/Fonts/GillSans.ttc   3
> gillsanslight            gillsans     gillsanslight            /Library/Fonts/GillSans.ttc   8
> gillsanslightitalic      gillsans     gillsanslightitalic      /Library/Fonts/GillSans.ttc   9
> gillsansnormal           gillsans     gillsans                 /Library/Fonts/GillSans.ttc   1
> gillsansregular          gillsans     gillsans                 /Library/Fonts/GillSans.ttc   1
> gillsanssemibold         gillsans     gillsanssemibold         /Library/Fonts/GillSans.ttc   5
> gillsanssemibolditalic   gillsans     gillsanssemibolditalic   /Library/Fonts/GillSans.ttc   6
> gillsansultrabold        gillsans     gillsansultrabold        /Library/Fonts/GillSans.ttc   7
> 
> Please check this on your system, and then try the names of the first column.
> 
> 
> Hraban
> ___________________________________________________________________________________
> 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: 36787 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] 3+ messages in thread

end of thread, other threads:[~2021-02-22 17:34 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-02-22 15:14 Using Gill Sans on macOS Gerben Wierda
2021-02-22 16:59 ` Henning Hraban Ramm
2021-02-22 17:34   ` Gerben Wierda

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