ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* Best way to access casul fonts
@ 2023-01-23 18:04 Mattias Märka via ntg-context
  2023-01-23 18:42 ` Garulfo via ntg-context
  2023-01-23 19:10 ` Pablo Rodriguez via ntg-context
  0 siblings, 2 replies; 11+ messages in thread
From: Mattias Märka via ntg-context @ 2023-01-23 18:04 UTC (permalink / raw)
  To: ntg-context; +Cc: Mattias Märka

Hi,

I'm trying to access Lucida Casual. I see in type-imp-lucida-typeone.mkiv that there is, indeed, a typescript for it, but I can't figure out how to switch to it. That is, I want to make some text be Lucida Casual.

I gather from a previous thread that I should be using \definefontstyle, but I don't know how to go about this.

Currently I'm just defining a new typescript and making Lucida Casual a synonym for Serif and then using \switchtobodyfont --- but this feel silly.

I searched the wiki and skimmed the reference manual, but to no avail. Perhaps I don't know what I should be looking for.

Any help would be appreciated. What's the easiest way to access a casual font? What's the cleanest way?

Thanks,
Mattias Märka
___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / https://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : https://www.pragma-ade.nl / http://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki     : https://contextgarden.net
___________________________________________________________________________________

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

* Re: Best way to access casul fonts
  2023-01-23 18:04 Best way to access casul fonts Mattias Märka via ntg-context
@ 2023-01-23 18:42 ` Garulfo via ntg-context
  2023-01-23 19:10 ` Pablo Rodriguez via ntg-context
  1 sibling, 0 replies; 11+ messages in thread
From: Garulfo via ntg-context @ 2023-01-23 18:42 UTC (permalink / raw)
  To: ntg-context; +Cc: Garulfo


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

Hi,

Following the instruction from : 
https://wiki.contextgarden.net/Use_the_fonts_you_want

mtxrun --script font --list --file -pattern=*casual*


gives :

familyname     weight   style    width    variant   fontname 
       filename                                subfont   fontweight

lucidacasual   normal   normal   normal   normal    lucidacasual 
   /home/xxxx/.fonts/LucidaCasual.ttf



Then the following code should work :

\starttypescript [myserif]

   \definefontsynonym[LucidaCasual-Regular]    [file:LucidaCasual.ttf]

\stoptypescript

\starttypescript [myserif]

   \setups[font:fallback:serif]

   \definefontsynonym[Serif] [LucidaCasual-Regular] [features=default]

\stoptypescript

\starttypescript [myserif]

   \definetypeface [myserif] [rm] [serif] [myserif]    [default]

\stoptypescript

\setupbodyfont[12pt]

\starttext

The quick brown fox jumps over the lazy dog

\setupbodyfont[myserif]

The quick brown fox jumps over the lazy dog

\stoptext



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

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

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

maillist : ntg-context@ntg.nl / https://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : https://www.pragma-ade.nl / http://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki     : https://contextgarden.net
___________________________________________________________________________________

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

* Re: Best way to access casul fonts
  2023-01-23 18:04 Best way to access casul fonts Mattias Märka via ntg-context
  2023-01-23 18:42 ` Garulfo via ntg-context
@ 2023-01-23 19:10 ` Pablo Rodriguez via ntg-context
  2023-01-23 19:32   ` Mattias Märka via ntg-context
  1 sibling, 1 reply; 11+ messages in thread
From: Pablo Rodriguez via ntg-context @ 2023-01-23 19:10 UTC (permalink / raw)
  To: Mattias Märka via ntg-context; +Cc: Pablo Rodriguez

On 1/23/23 19:04, Mattias Märka via ntg-context wrote:
> Hi,
> 
> I'm trying to access Lucida Casual.

Hi Matthias,

With a relatively recent version of ConTeXt (LMTX or MkIV), the
following should work:

  \definefontfamily[myserif][rm][Lucida Casual]
  \starttext
  The quick brown fox jumps over the lazy dog.

  \setupbodyfont[myserif]
  The quick brown fox jumps over the lazy dog.
  \stoptext

This is the easiest way to access it.

Another question would be how to mix a casual font with serif,
sans-serif and mono typefaces.

Just in case it might help,

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

maillist : ntg-context@ntg.nl / https://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : https://www.pragma-ade.nl / http://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki     : https://contextgarden.net
___________________________________________________________________________________

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

* Re: Best way to access casul fonts
  2023-01-23 19:10 ` Pablo Rodriguez via ntg-context
@ 2023-01-23 19:32   ` Mattias Märka via ntg-context
  2023-01-24  7:41     ` Pablo Rodriguez via ntg-context
  0 siblings, 1 reply; 11+ messages in thread
From: Mattias Märka via ntg-context @ 2023-01-23 19:32 UTC (permalink / raw)
  To: mailing list for ConTeXt users; +Cc: Mattias Märka, Pablo Rodriguez


Hi Pablo,

Yes, I want to mix casual with serif, sans-serif and so on. Sorry, I wasn't clear in my original message.

What Garulfo suggested is what I've been doing.

Mattias


------- Original Message -------
On Monday, January 23rd, 2023 at 9:10 PM, Pablo Rodriguez via ntg-context <ntg-context@ntg.nl> wrote:


> 
> 
> 
> On 1/23/23 19:04, Mattias Märka via ntg-context wrote:
> 
> > Hi,
> > 
> > I'm trying to access Lucida Casual.
> 
> 
> Hi Matthias,
> 
> With a relatively recent version of ConTeXt (LMTX or MkIV), the
> following should work:
> 
> \definefontfamily[myserif][rm][Lucida Casual]
> \starttext
> The quick brown fox jumps over the lazy dog.
> 
> \setupbodyfont[myserif]
> The quick brown fox jumps over the lazy dog.
> \stoptext
> 
> This is the easiest way to access it.
> 
> Another question would be how to mix a casual font with serif,
> sans-serif and mono typefaces.
> 
> Just in case it might help,
> 
> Pablo
> ___________________________________________________________________________________
> If your question is of interest to others as well, please add an entry to the Wiki!
> 
> maillist : ntg-context@ntg.nl / https://www.ntg.nl/mailman/listinfo/ntg-context
> webpage : https://www.pragma-ade.nl / http://context.aanhet.net
> archive : https://bitbucket.org/phg/context-mirror/commits/
> wiki : https://contextgarden.net
> ___________________________________________________________________________________
___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / https://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : https://www.pragma-ade.nl / http://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki     : https://contextgarden.net
___________________________________________________________________________________

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

* Re: Best way to access casul fonts
  2023-01-23 19:32   ` Mattias Märka via ntg-context
@ 2023-01-24  7:41     ` Pablo Rodriguez via ntg-context
  2023-01-29 18:07       ` Mattias Märka via ntg-context
  0 siblings, 1 reply; 11+ messages in thread
From: Pablo Rodriguez via ntg-context @ 2023-01-24  7:41 UTC (permalink / raw)
  To: Mattias Märka via ntg-context; +Cc: Pablo Rodriguez

On 1/23/23 20:32, Mattias Märka via ntg-context wrote:
> Hi Pablo,
> 
> Yes, I want to mix casual with serif, sans-serif and so on. 
Hi Mattias (please, excuse my previous misspelling of your name),

here you have it:

  \definefontfamily[mainface][rm][TeX Gyre Pagella]
  \definefontfamily[mainface][ss][TeX Gyre Heros]
  \definefontfamily[mainface][tt][TeX Gyre Cursor]
  \definefontfamily[mainface][hw][Lucida Casual]
  \definefontfamily[mainface][cg][Lucida Casual]
  \setupbodyfont[mainface]
  \starttext
  \doloopoverlist{\rm,\ss,\tt,\hw,\cg}
    {{\recursestring%
      The quick brown fox jumps over the lazy dog.\par}}
  \stoptext

Lucida Casual is handwriting and calligraphy in the sample. But you only
need one of them.

I hope it helps,

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

maillist : ntg-context@ntg.nl / https://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : https://www.pragma-ade.nl / http://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki     : https://contextgarden.net
___________________________________________________________________________________

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

* Re: Best way to access casul fonts
  2023-01-24  7:41     ` Pablo Rodriguez via ntg-context
@ 2023-01-29 18:07       ` Mattias Märka via ntg-context
  2023-01-30 11:20         ` Pablo Rodriguez via ntg-context
  0 siblings, 1 reply; 11+ messages in thread
From: Mattias Märka via ntg-context @ 2023-01-29 18:07 UTC (permalink / raw)
  To: mailing list for ConTeXt users; +Cc: Mattias Märka

Hi

This is probably the most reasonable solution.

Thanks
Mattias

------- Original Message -------
On Tuesday, January 24th, 2023 at 9:41 AM, Pablo Rodriguez via ntg-context <ntg-context@ntg.nl> wrote:


> 
> 
> 
> On 1/23/23 20:32, Mattias Märka via ntg-context wrote:
> 
> > Hi Pablo,
> > 
> > Yes, I want to mix casual with serif, sans-serif and so on.
> 
> Hi Mattias (please, excuse my previous misspelling of your name),
> 
> here you have it:
> 
> \definefontfamily[mainface][rm][TeX Gyre Pagella]
> \definefontfamily[mainface][ss][TeX Gyre Heros]
> \definefontfamily[mainface][tt][TeX Gyre Cursor]
> \definefontfamily[mainface][hw][Lucida Casual]
> \definefontfamily[mainface][cg][Lucida Casual]
> \setupbodyfont[mainface]
> \starttext
> \doloopoverlist{\rm,\ss,\tt,\hw,\cg}
> {{\recursestring%
> The quick brown fox jumps over the lazy dog.\par}}
> \stoptext
> 
> Lucida Casual is handwriting and calligraphy in the sample. But you only
> need one of them.
> 
> I hope it helps,
> 
> Pablo
> ___________________________________________________________________________________
> If your question is of interest to others as well, please add an entry to the Wiki!
> 
> maillist : ntg-context@ntg.nl / https://www.ntg.nl/mailman/listinfo/ntg-context
> webpage : https://www.pragma-ade.nl / http://context.aanhet.net
> archive : https://bitbucket.org/phg/context-mirror/commits/
> wiki : https://contextgarden.net
> ___________________________________________________________________________________
___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / https://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : https://www.pragma-ade.nl / http://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki     : https://contextgarden.net
___________________________________________________________________________________

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

* Re: Best way to access casul fonts
  2023-01-29 18:07       ` Mattias Märka via ntg-context
@ 2023-01-30 11:20         ` Pablo Rodriguez via ntg-context
  2023-01-30 17:24           ` Mattias Märka via ntg-context
  0 siblings, 1 reply; 11+ messages in thread
From: Pablo Rodriguez via ntg-context @ 2023-01-30 11:20 UTC (permalink / raw)
  To: Mattias Märka via ntg-context; +Cc: Pablo Rodriguez

On 1/29/23 19:07, Mattias Märka via ntg-context wrote:
> Hi
> 
> This is probably the most reasonable solution.

Hi Mattias,

would you be so kind to update
https://wiki.contextgarden.net/Use_the_fonts_you_want to include this?

Many thanks for your help,

Pablo

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

maillist : ntg-context@ntg.nl / https://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : https://www.pragma-ade.nl / http://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki     : https://contextgarden.net
___________________________________________________________________________________

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

* Re: Best way to access casul fonts
  2023-01-30 11:20         ` Pablo Rodriguez via ntg-context
@ 2023-01-30 17:24           ` Mattias Märka via ntg-context
  2023-01-30 17:49             ` Henning Hraban Ramm via ntg-context
  0 siblings, 1 reply; 11+ messages in thread
From: Mattias Märka via ntg-context @ 2023-01-30 17:24 UTC (permalink / raw)
  To: mailing list for ConTeXt users; +Cc: Mattias Märka

Hi

Will do.

\definefontstyle is still bugging me. I gather from previous threads that it should be possible to define a new font style for casual and use that via a font switch, but I cannot get this to work. I'm not sure this is still possible.
The threads I'm referring to:
https://www.mail-archive.com/ntg-context@ntg.nl/msg00039.html
https://www.mail-archive.com/ntg-context@ntg.nl/msg39849.html
https://www.mail-archive.com/ntg-context@ntg.nl/msg84188.html
I might start a separate thread and ask whether \definefontstyle still works.

I also experimented with defining my own typescripts for Lucida so that casual and fax (and all the other various Lucida fonts, really) are easily accessible.

Something like:

\starttypescript[serif][lucbr]
  \definefontsynonym[Serif][name:LucidaBright]
  \definefontsynonym[SerifItalic][name:LucidaBright-Italic]
  \definefontsynonym[SerifBold][name:LucidaBright-Demi]
  \definefontsynonym[SerifBoldItalic][name:LucidaBright-DemiItalic]
  \definefontsynonym[SerifSlanted][name:LucidaBright-Slanted]
  \definefontsynonym[SerifCaps][name:LucidaBrightSmallcaps]
  \definefontsynonym[SerifBoldCaps][name:LucidaBrightSmallCaps-Demi]
\stoptypescript

\starttypescript[serif][lucfax]
  \definefontsynonym[Serif][name:LucidaFax]
  \definefontsynonym[SerifItalic][name:LucidaFax-Italic]
  \definefontsynonym[SerifBold][name:LucidaFax-Demi]
  \definefontsynonym[SerifBoldItalic][name:LucidaFax-DemiItalic]
\stoptypescript

\starttypescript[sans][lucss]
  \definefontsynonym[Sans][name:LucidaSans]
  \definefontsynonym[SansItalic][name:LucidaSans-Italic]
  \definefontsynonym[SansBold][name:LucidaSans-Demi]
  \definefontsynonym[SansBoldItalic][name:LucidaSans-DemiItalic]
\stoptypescript

\starttypescript[mono][lucbr,luctt]
  \definefontsynonym[Mono][name:LucidaTypewriter]
  \definefontsynonym[MonoItalic][name:LucidaTypweriterOblique]
  \definefontsynonym[MonoBold][name:LucidaTypewriterBold]
  \definefontsynonym[MonoBoldItalic][name:LucidaTypweriterBoldOblique]
\stoptypescript

\starttypescript[mono][lucss,lucsstt]
  \definefontsynonym[Mono][name:LucidaSansTypewriter]
  \definefontsynonym[MonoItalic][name:LucidaSansTypweriterOblique]
  \definefontsynonym[MonoBold][name:LucidaSansTypewriterBold]
  \definefontsynonym[MonoBoldItalic][name:LucidaSansTypweriterBoldOblique]
\stoptypescript

\starttypescript[calligraphy][lucbr,luccg]
  \definefontsynonym[Calligraphy][name:LucidaCalligraphy-Italic]
\stoptypescript

\starttypescript[handwriting][lucbr,luchw]
  \definefontsynonym[Handwriting][name:LucidaHandwriting-Italic]
\stoptypescript

\starttypescript[serif][lucbl]
  \definefontsynonym[Serif][name:LucidaBlackletter]
\stoptypescript

\starttypescript[serif][luccas]
  \definefontsynonym[Serif][name:LucidaCasual]
  \definefontsynonym[SerifItalic][name:LucidaCasual-Italic]
\stoptypescript

\starttypescript[lucbr]
  \definetypeface[lucbr][rm][serif][lucbr][default][features=default]
  \definetypeface[lucbr][mm][math][lucida][default]
  \definetypeface[lucbr][tt][mono][lucbr][default][features=default]
  \definetypeface[lucbr][cg][calligrpahy][default][features=default]
  \definetypeface[lucbr][hw][handwriting][default][features=default]
\stoptypescript

\starttypescript[lucfax]
  \definetypeface[lucfax][rm][serif][lucfax][default][features=default]
\stoptypescript

\starttypescript[lucss]
  \definetypeface[lucss][ss][sans][lucss][default][features=default]
  \definetypeface[lucss][tt][mono][lucss][default][features=default]
\stoptypescript

\starttypescript[luctt]
  \definetypeface[luctt][tt][mono][luctt][default][features=default]
\stoptypescript

\starttypescript[lucsstt]
  \definetypeface[lucsstt][tt][mono][lucsstt][default][features=default]
\stoptypescript

\starttypescript[luccg]
  \definetypeface[luccg][cg][calligraphy][luccg][default][features=default]
\stoptypescript

\starttypescript[luchw]
  \definetypeface[luchw][hw][handwriting][luchw][default][features=default]
\stoptypescript

\starttypescript[lucbl]
  \definetypeface[lucbl][rm][serif][lucbl][default][features=default]
\stoptypescript

\starttypescript[luccas]
  \definetypeface[luccas][rm][serif][luccas][default][features=default]
\stoptypescript

\starttypescript[luc]
  \definetypeface[luc][rm][serif][lucbr][default][features=default]
  \definetypeface[luc][mm][math][lucida][default]
  \definetypeface[luc][ss][sans][lucss][default][features=default]
  \definetypeface[luc][tt][mono][lucbr][default][features=default]
  \definetypeface[luc][cg][calligraphy][lucbr][default][features=default]
  \definetypeface[luc][hw][handwriting][lucbr][default][features=default]
\stoptypescript

\def\lucbr{\switchtobodyfont[lucbr]}
\def\lucfax{\switchtobodyfont[lucfax]}
\def\lucss{\switchtobodyfont[lucss]}
\def\luctt{\switchtobodyfont[luctt]}
\def\lucsstt{\switchtobodyfont[lucsstt]}
\def\luccg{\switchtobodyfont[luccg]}
\def\luchw{\switchtobodyfont[luchw]}
\def\lucbl{\switchtobodyfont[lucbl]}
\def\luccas{\switchtobodyfont[luccas]}

Would it make sense adding this to the wiki as well? I feel like what I'm doing is non-standard. I'm also repeating a lot of what's in the Lucida typescript file that comes with the distribution. There must be some easy way to monkey patch the existing type script file.

Mattias

------- Original Message -------
On Monday, January 30th, 2023 at 1:20 PM, Pablo Rodriguez via ntg-context <ntg-context@ntg.nl> wrote:


> 
> 
> 
> On 1/29/23 19:07, Mattias Märka via ntg-context wrote:
> 
> > Hi
> > 
> > This is probably the most reasonable solution.
> 
> 
> Hi Mattias,
> 
> would you be so kind to update
> https://wiki.contextgarden.net/Use_the_fonts_you_want to include this?
> 
> Many thanks for your help,
> 
> Pablo
> 
> ___________________________________________________________________________________
> If your question is of interest to others as well, please add an entry to the Wiki!
> 
> maillist : ntg-context@ntg.nl / https://www.ntg.nl/mailman/listinfo/ntg-context
> webpage : https://www.pragma-ade.nl / http://context.aanhet.net
> archive : https://bitbucket.org/phg/context-mirror/commits/
> wiki : https://contextgarden.net
> ___________________________________________________________________________________
___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / https://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : https://www.pragma-ade.nl / http://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki     : https://contextgarden.net
___________________________________________________________________________________

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

* Re: Best way to access casul fonts
  2023-01-30 17:24           ` Mattias Märka via ntg-context
@ 2023-01-30 17:49             ` Henning Hraban Ramm via ntg-context
  2023-01-30 18:05               ` Mattias Märka via ntg-context
  2023-01-30 20:10               ` Hans Hagen via ntg-context
  0 siblings, 2 replies; 11+ messages in thread
From: Henning Hraban Ramm via ntg-context @ 2023-01-30 17:49 UTC (permalink / raw)
  To: Mattias Märka via ntg-context; +Cc: Henning Hraban Ramm

Am 30.01.23 um 18:24 schrieb Mattias Märka via ntg-context:
> \definefontstyle is still bugging me. I gather from previous threads that it should be possible to define a new font style for casual and use that via a font switch, but I cannot get this to work. I'm not sure this is still possible.

No, it isn’t, I recently asked Hans.

Hraban

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

maillist : ntg-context@ntg.nl / https://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : https://www.pragma-ade.nl / http://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki     : https://contextgarden.net
___________________________________________________________________________________

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

* Re: Best way to access casul fonts
  2023-01-30 17:49             ` Henning Hraban Ramm via ntg-context
@ 2023-01-30 18:05               ` Mattias Märka via ntg-context
  2023-01-30 20:10               ` Hans Hagen via ntg-context
  1 sibling, 0 replies; 11+ messages in thread
From: Mattias Märka via ntg-context @ 2023-01-30 18:05 UTC (permalink / raw)
  To: mailing list for ConTeXt users; +Cc: Mattias Märka

Ha, good to know. Do you know what one should do instead?

Also, do you know why this is? It would be good to mention this on the wiki.

Mattias

------- Original Message -------
On Monday, January 30th, 2023 at 7:49 PM, Henning Hraban Ramm via ntg-context <ntg-context@ntg.nl> wrote:


> 
> 
> 
> Am 30.01.23 um 18:24 schrieb Mattias Märka via ntg-context:
> 
> > \definefontstyle is still bugging me. I gather from previous threads that it should be possible to define a new font style for casual and use that via a font switch, but I cannot get this to work. I'm not sure this is still possible.
> 
> 
> No, it isn’t, I recently asked Hans.
> 
> Hraban
> 
> ___________________________________________________________________________________
> If your question is of interest to others as well, please add an entry to the Wiki!
> 
> maillist : ntg-context@ntg.nl / https://www.ntg.nl/mailman/listinfo/ntg-context
> webpage : https://www.pragma-ade.nl / http://context.aanhet.net
> archive : https://bitbucket.org/phg/context-mirror/commits/
> wiki : https://contextgarden.net
> ___________________________________________________________________________________
___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / https://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : https://www.pragma-ade.nl / http://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki     : https://contextgarden.net
___________________________________________________________________________________

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

* Re: Best way to access casul fonts
  2023-01-30 17:49             ` Henning Hraban Ramm via ntg-context
  2023-01-30 18:05               ` Mattias Märka via ntg-context
@ 2023-01-30 20:10               ` Hans Hagen via ntg-context
  1 sibling, 0 replies; 11+ messages in thread
From: Hans Hagen via ntg-context @ 2023-01-30 20:10 UTC (permalink / raw)
  To: Henning Hraban Ramm via ntg-context; +Cc: Hans Hagen

On 1/30/2023 6:49 PM, Henning Hraban Ramm via ntg-context wrote:
> Am 30.01.23 um 18:24 schrieb Mattias Märka via ntg-context:
>> \definefontstyle is still bugging me. I gather from previous threads 
>> that it should be possible to define a new font style for casual and 
>> use that via a font switch, but I cannot get this to work. I'm not 
>> sure this is still possible.
> 
> No, it isn’t, I recently asked Hans.
just define a new typeface with casual as serif

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 / https://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : https://www.pragma-ade.nl / http://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki     : https://contextgarden.net
___________________________________________________________________________________

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

end of thread, other threads:[~2023-01-30 20:10 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-01-23 18:04 Best way to access casul fonts Mattias Märka via ntg-context
2023-01-23 18:42 ` Garulfo via ntg-context
2023-01-23 19:10 ` Pablo Rodriguez via ntg-context
2023-01-23 19:32   ` Mattias Märka via ntg-context
2023-01-24  7:41     ` Pablo Rodriguez via ntg-context
2023-01-29 18:07       ` Mattias Märka via ntg-context
2023-01-30 11:20         ` Pablo Rodriguez via ntg-context
2023-01-30 17:24           ` Mattias Märka via ntg-context
2023-01-30 17:49             ` Henning Hraban Ramm via ntg-context
2023-01-30 18:05               ` Mattias Märka via ntg-context
2023-01-30 20:10               ` Hans Hagen via ntg-context

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