ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
From: Hans Hagen <pragma@wxs.nl>
To: mailing list for ConTeXt users <ntg-context@ntg.nl>
Subject: Re: fontfeatures
Date: Fri, 07 Aug 2009 12:05:47 +0200	[thread overview]
Message-ID: <4A7BFC7B.3040308@wxs.nl> (raw)
In-Reply-To: <49A013B8-FD40-45E2-9716-4E5B54D206A1@gmail.com>

Wolfgang Schuster wrote:
> 
> Am 07.08.2009 um 11:10 schrieb Hans Hagen:
> 
>>> Why, you can make a table where there normal feature name (Uppercase 
>>> with spaces)
>>> is listed together with the normalized form (lowercase, no spaces) 
>>> and the four
>>> letter form.
>>
>> well, your asked for smallcaps and got smallcapitals and remembering 
>> the (sometimes long verbose names is no fun either)
>>
>> we might even want to strip everything except a-z0-9
>>
>> Terminal Forms #2
>> Above-Base Substitutions
> 
> 
> I know, I did this already in the last version of my simplefonts module 
> where I played
> with this to enable certain features which are not part of the standard 
> fontfeatures.
> 
> Example: \setmainfont[Delicious][oldstylefigures=yes]
> 
> What have to be removed are: spaces, number sign, hyphen, slash

better is to keep, as in:

for k, v in pairs(to_features) do
     local stripped = gsub(k,"%-"," ")
     to_features[stripped] = v
     local stripped = gsub(k,"[^a-zA-Z0-9]","")
     to_features[stripped] = v
end
for k, v in pairs(to_features) do
     to_features[lower(k)] = v
end

(btw, i uploaded a beta with some of last weeks fixes)

-----------------------------------------------------------------
                                           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
___________________________________________________________________________________


      reply	other threads:[~2009-08-07 10:05 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-08-05  9:44 fontfeatures Wolfgang Schuster
2009-08-06 21:17 ` fontfeatures Hans Hagen
2009-08-07  8:43   ` fontfeatures Wolfgang Schuster
2009-08-07  9:10     ` fontfeatures Hans Hagen
2009-08-07  9:28       ` fontfeatures Wolfgang Schuster
2009-08-07 10:05         ` Hans Hagen [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=4A7BFC7B.3040308@wxs.nl \
    --to=pragma@wxs.nl \
    --cc=ntg-context@ntg.nl \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).