Hello there,
I want to adjust my series of numerators and denominators in combination with the fraction bar. But in the Features menu I can choose only denominators or numerators, not both. Is there an easy way to solve this (instead of copy and paste)? I can do a testinstal but I prefer working in Glyphs of cource.
Thank you,
Titus
You can construct the displayed text in Glyphs with glyph names, so you are not dependent on activating the features.
When you run this Python script in the Macro Panel, it will open a new tab with all combinations of numerator, fraction, and denominator.
glyphs = [
"zero",
"one",
"two",
"three",
"four",
"five",
"six",
"seven",
"eight",
"nine",
]
text = [
f"/{left}.numr/fraction/{right}.dnom"
for left in glyphs
for right in glyphs
]
Font.newTab("\n".join(text))
The fractions are separated by a newline (\n) character, but you can change that in the last line as you like.
1 Like
Yes. Thank you jkutilek
Yes you can, activate the frac
feature.
And there is a mekkablue script called New tab with all fraction figure combinations.
Of course … Thank you!