-
Hello! I haven't ever done anything in the font space, so I have no understanding of the effort required, so here goes: What's involved with adding support for the OpenType Math features? There are some fonts, such as Fira/Lato/Noto Math that do a pretty good job standalone, but seem a bit jarring since the style feels significantly different when used alongside Inter. Overall, there don't even seem to be that many fonts available for this task at all! Just curious about it all and if there's something I could learn and help with, that might be fun too :) Cheers, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
For glyphs with a direct mapping to Unicode codepoints it's simply a matter of drawing glyphs for the 12 different designs of Inter. It's labor intensive but not complicated. Example from https://firamath.github.io/specimen.html: For advanced stuff like context-sensitive positioning and "ligatures", like something like this |
Beta Was this translation helpful? Give feedback.
For glyphs with a direct mapping to Unicode codepoints it's simply a matter of drawing glyphs for the 12 different designs of Inter. It's labor intensive but not complicated.
Example from https://firamath.github.io/specimen.html:
For advanced stuff like context-sensitive positioning and "ligatures", like something like this
it gets much trickier as you'd need to write OpenType code and design potentially hundreds of variations of existing glyphs for each permutation. The cost-benefit ratio for doing something like this is way off (high cost, low benefit, IMHO.)