ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
From: Hans Hagen <j.hagen@xs4all.nl>
To: ntg-context@ntg.nl
Subject: [NTG-context] Re: Scaling characters without font switching in CLD
Date: Sat, 12 Aug 2023 23:48:21 +0200	[thread overview]
Message-ID: <cacb5114-a392-5470-7c55-33300a13a874@xs4all.nl> (raw)
In-Reply-To: <e2fb748c-6f81-4b51-929a-b7af6579c91c@Spark>

On 8/12/2023 11:33 PM, Hamid,Idris wrote:
> On Aug 12, 2023, 2:11 PM -0600, Hans Hagen via ntg-context <ntg-context@ntg.nl>, wrote:
>> impossible to reply as impossible to see what is your and mine text here
> 
> Hm.. This new/modern email client (forced to update by the university) supports inline replies, and I can see the levels, but the distinctions between levels of reply appears to get lost when filtered by the ntg-context list (looking at the archives). So here it is again, with levels of reply made explicit:
> 
> On Aug 12, 2023, 9:35 AM -0600, Hans Hagen <j.hagen@xs4all.nl>, wrote:
> ** Caution: EXTERNAL Sender **
> 
> On 8/12/2023 4:03 PM, Hamid,Idris wrote:
> 
>>> \tfx causes a switch to computer modern.
> 
>> Indeed. Something I need to discuss with Wolfgang as double checking is needed before I patch.
> 
> Ah.. ok.
> 
>>> But what if we want to scale independently of font switching?
> 
>> There is no need to go lua here (esp when you have not done vf magick
>> before and i'm not going to debug code that i have little clue what it's
>> about to do).
> 
> Many thanks. Part of the context is that I have some updatable mission-critical documents that depended on \defineactivecharacter, which is apparently deprecated in LMTX. See earlier thread with that subject line.

i adapted some recently but anyway active chars are a bad idea

> [BTW: Just this morning someone from the Persian Gulf asked for an updated version of a document whose compilation depended on \defineactivecharacter, so I need to get this working in the new regime -)]
> 
> Now the templates that you provided - many, many thanks! - have what is needed to care of everything except for two characters: 02BE and 02BF.

you'll figure it out, right?

> For one of those two remaining characters we also need scaling, for the other we also need scaling + rotation. It is not clear to me whether the scaling/rotation commands should fall under the character function, e.g.,

the demo shows both: x/.y scaling and 90/180/270 rotation

> =======
> -- ʿ ringhalfleft
> local function ringhalfleft (characters,target,base,accent)
> =======
> 
> the initialize function
> 
> =======
> local function initialize(tfmdata,value)
> =======
> 
> or whether we just make a new function altogether
> 
> =======
> local function scale (ringhalfleft)  -- shooting in the dark here
> =======
> 
> So the reason I said CLD is best is because we already defined all of the needed characters that way -- using your template -- except for these two, for which we need to add scaling and or rotation.
> 
>> The attached (linked in the previous email but attached here) gives us rotation but no scaling.
>> - we cheat here and yuse glyph scaled (I have to provide a relative to
>> current x/y scaling, don't use \glyphscale as that one is used by
>> context itself
>> - we use the style variant so that it adapts
>> - you have to replace "Serif" with "YourFont" and map that one onto a
>> file (YourFont YourFontBold etc)
>> - more about these box manipulations in the low level manual
> 
> Ok. Just discovered the 11 low-level manuals yesterday, not sure which one to focus on in this case -)
> 
>> \startsetups glyph:iTee
>> \dontleavehmode\hpack\bgroup
>> \setbox\scratchbox \ruledhbox \bgroup
>> \glyphxscale 400
>> \glyphyscale 400
>> \getglyphstyled{Serif}{T}> choose a font here
>> \egroup
>> \scratchheight 2.75\ht\scratchbox
>> \boxyoffset \scratchbox\scratchheight
>> \boxorientation\scratchbox\plustwo
>> \ht \scratchbox\scratchheight
>> \box\scratchbox
>> \egroup
>> \stopsetups
> 
>> \definesymbol
>> [iTee]
>> [\directsetup{glyph:iTee}]
> 
>> \startTEXpage [offset=1ts,width=2cm]
>> \ruledhbox {\tfx T \symbol{iTee}} \par
>> \ruledhbox {T \symbol{iTee}} \par
>> \ruledhbox {\tfa T \symbol{iTee}} \par
>> \ruledhbox {\bfd T \symbol{iTee}}
>> \stopTEXpage
> 
> Great, will study this. The challenge (for me) will be integrating this approach into the lua definitions of the two needed characters. With \defineactivecharacter deprecated, there seems to be no way other than CLD to make and register the needed macro for \definefontfeature -- and we want to move forward with the new regime and not look back.

well, you wented symbols so ... why lua then (btw, no need for squeezine 
as there are virtual commands for scaling; not for rotating; an 
alternative is to define some chars in metapost (see 
meta-imp-gamesymbols) which gives you plenty freedom

> With many thanks and much gratitude, Hans.
> 
> Best wishes
> Idris
> --
> Professor Idris Samawi Hamid
> Department of Philosophy
> Colorado State University
> Fort Collins, CO 80523
> 
> 
> ___________________________________________________________________________________
> 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
> ___________________________________________________________________________________

-- 

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

  reply	other threads:[~2023-08-12 21:50 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-08-12 14:03 [NTG-context] " Hamid,Idris
2023-08-12 15:34 ` [NTG-context] " Hans Hagen
2023-08-12 18:05   ` Hamid,Idris
2023-08-12 20:10     ` Hans Hagen via ntg-context
2023-08-12 21:33       ` Hamid,Idris
2023-08-12 21:48         ` Hans Hagen [this message]
2023-08-12 22:11           ` Hamid,Idris
2023-08-12 22:16             ` Hamid,Idris
2023-08-12 22:56               ` Hamid,Idris
2023-08-13 12:32                 ` Hans Hagen via ntg-context

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=cacb5114-a392-5470-7c55-33300a13a874@xs4all.nl \
    --to=j.hagen@xs4all.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).