-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Variable MATH
table
#136
Comments
There's definitely interest but needs people to help define what it looks like. |
(1) is easy and probably should be done. We can upgrade the device tables as you say, and use the MVAR mechanism for the scalars. |
We need to at least add a ItemVariationStore then. |
I am more hesitant, but maybe that is because I have not really played with variable fonts at all and hence not discovered their benefits. I guess it is in principle technically possible. Maybe the extensibles would be the most difficult thing to handle. Do you have plans to create a math font paired with a variable text font? If so, which one? |
Regarding 2, some benefits could be:
IIUC, how it works is that we provide a variable value (or more) and we get a glyph from that. While for math layout we are given a target width or height and ask to shape a glyph (or an assembly) to match this target. So either the layout system would need to do a reverse calculation to calculate the desired variable value ; that can be straightforward for easy cases but maybe the MATH table should provide some hints on how to do that. |
It should be easier than that - if the axis is measured in font units, then the engine can simply dial in how big they want the glyph to become. |
cc @jenskutilek |
But for it to work reliably it needs (1) in MATH table, at least for top accent attachment and italics corrections of the extensible glyphs. |
No concrete plan, my interest is mostly in aspect (2), creating extensible glyphs using font variations, for the many benefits excellently summarized by @fred-wang. |
I’d add to that radicals that are built from one glyphs, instead of a surd and a drawn rule which often results in misalignment and rendering differences due to hinting or different rendering between glyphs and solid rectangles. Instead the radical glyph would stretch in both directions; vertically to get the desired size and horizontally to cover the equation. |
cc @tiroj |
I’ll need to think through the vertical/horizontal variants idea. I can imagine this gets complicated in the case of slanted glyphs. More generally, I think having a brainstorming meeting to come up with all the ways in which variations technology could be applied to math layout would be a good idea. And if we’re doing this, then there are some other improvements that could be usefully made to the MATH table, e.g. defining italic correction for other quadrants than just the top-right. |
@tiroj Regarding italic correction in other corners, what is the use case? There are already corner kerns/staircase kerns. In fact, the Lucida Bright Math font does not really use italic correction at all, but uses those kerns, and it is therefore one of the easier fonts to handle. (In ConTeXt italic correction is even converted into corner kerns.) |
I think it would help with situations like the tail of italic j, where you either give it -ve left side bearing to improve spacing (how type designers usually design it) and get clashes with delimiters, or give it +ve left side bearing to fix the clash at the expense of worse spacing: I guess a left italic correction here (not sure if 4 corners are really needed) would fix the clash without sacrificing the spacing. |
@khaledhosny I see the issue, but I'm not sure italic correction is the cure (it is not really correcting an italic <-> upright). How would you differ the spacing i<->j and (<->j? We can already have kerning pairs in the fonts. So an application can decide what to do with it. Example: In bonum we indeed have the clash (top line). It is resolved with a negative kerning pair between i and j (bottom). |
Is there any interest in supporting font variations in
MATH
table?At high level, I think there are two aspects for font variations regarding
MATH
table:MATH
in variable fonts: say, a font with weight axis that has aMATH
table andMATH
data (constants, measurements, etc) would variate. Since most values inMATH
table use Device Tables, they would be upgraded to use Item Variation Stores, other values that use plain numbers can probably handled by some other mechanism like in other tables.MATH
table, namely for horizontal and vertical glyph variants. This would probably be done by registering two axes, for horizontal and vertical extension, lets saymhex
andmvex
. This can’t support arbitrary glyph sizes, though, so we would still need glyph assembly as last resort mechanism, or may be if we can support extrapolation it would be possible to get arbitrary glyph sizes without resorting to building them from glyph parts.What do you think? My understanding of the inner workings of font variations is rather limited, so I don’t know how viable is what I proposing. We probably need input from people doing math layout and whether such a thing would be useful/implementable.
The text was updated successfully, but these errors were encountered: