<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xml:base="http://typophile.com" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
 <title>Typophile - Museo Sans numbers - Comments</title>
 <link>http://typophile.com/node/47131</link>
 <description>Comments for &quot;Museo Sans numbers&quot;</description>
 <language>en</language>
<item>
 <title>Thank you Asparouh. I’ll</title>
 <link>http://typophile.com/node/47131#comment-288271</link>
 <description>&lt;p&gt;Thank you Asparouh. I&amp;#8217;ll try it out soon.&lt;/p&gt;
</description>
 <pubDate>Tue,  8 Jul 2008 00:41:34 -0700</pubDate>
 <dc:creator>Jos Buivenga</dc:creator>
 <guid isPermaLink="false">comment 288271 at http://typophile.com</guid>
</item>
<item>
 <title>@Jos: “I don’t know what</title>
 <link>http://typophile.com/node/47131#comment-288182</link>
 <description>&lt;p&gt;@&lt;strong&gt;Jos&lt;/strong&gt;: &amp;#8220;&lt;em&gt;I don’t know what the normal or standard OT feature code for fractions is&lt;/em&gt;&amp;#8221;&lt;/p&gt;
&lt;p&gt;Quite simplified, this is the way I do fractions (&lt;em&gt;follows the description, then the code itself&lt;/em&gt;). Derived of Adobe standards, of course. This is a working code I only re-edit to alter the exact figures naming. Depending on the availability of five sixths, four fifths and other [more exotic] fractions you can remove parts of the replacement code below.&lt;/p&gt;
&lt;p&gt;So, &lt;strong&gt;the explanation&lt;/strong&gt;.&lt;br /&gt;
Requirements: 0-9.numerators, 0-9.denominators&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Define what is considered slash (as class);
&lt;li&gt;Define already built fractions (like percent, onequarter, onehalf etc.);
&lt;li&gt;Replace all standard figures with numerators;
&lt;li&gt;Define replacement rules for the already built fractions;
&lt;li&gt;Last part: generation of not-ready fractions (like 22/7 etc.)
&lt;/ul&gt;
&lt;p&gt;&lt;em&gt;feature frac {&lt;br /&gt;
	@slash = [slash fraction];&lt;br /&gt;
	@prebuilt = [perthousand percent onequarter onehalf threequarters oneeighth threeeighths fiveeighths];&lt;/p&gt;
&lt;p&gt;	lookup FRAC {&lt;br /&gt;
		sub [zero zero.pnum] by zero.numr;&lt;br /&gt;
		sub [one one.pnum onesuperior] by one.numr;&lt;br /&gt;
		sub [two two.pnum twosuperior] by two.numr;&lt;br /&gt;
		sub [three three.pnum threesuperior] by three.numr;&lt;br /&gt;
		sub [four four.pnum foursuperior] by four.numr;&lt;br /&gt;
		sub [five five.pnum fivesuperior] by five.numr;&lt;br /&gt;
		sub [six six.pnum sixsuperior] by six.numr;&lt;br /&gt;
		sub [seven seven.pnum sevensuperior] by seven.numr;&lt;br /&gt;
		sub [eight eight.pnum eightsuperior] by eight.numr;&lt;br /&gt;
		sub [nine nine.pnum ninesuperior] by nine.numr;&lt;br /&gt;
	} FRAC;&lt;/p&gt;
&lt;p&gt;        sub zero.numr&amp;#8217; @slash&amp;#8217; zero.numr&amp;#8217; zero.numr&amp;#8217; zero.numr&amp;#8217; by pertenthousand;&lt;br /&gt;
        sub zero.numr&amp;#8217; @slash&amp;#8217; zero.numr&amp;#8217; zero.numr&amp;#8217; by perthousand;&lt;br /&gt;
	sub zero.numr&amp;#8217; @slash&amp;#8217; zero.numr&amp;#8217; by percent;&lt;br /&gt;
	sub one.numr&amp;#8217; @slash&amp;#8217; four.numr&amp;#8217; by onequarter;&lt;br /&gt;
	sub one.numr&amp;#8217; @slash&amp;#8217; two.numr&amp;#8217; by onehalf;&lt;br /&gt;
	sub three.numr&amp;#8217; @slash&amp;#8217; four.numr&amp;#8217; by threequarters;&lt;br /&gt;
    sub one.numr&amp;#8217; @slash&amp;#8217; eight.numr&amp;#8217; by oneeighth;&lt;br /&gt;
    sub three.numr&amp;#8217; @slash&amp;#8217; eight.numr&amp;#8217; by threeeighths;&lt;br /&gt;
    sub five.numr&amp;#8217; @slash&amp;#8217; eight.numr&amp;#8217; by fiveeighths;&lt;br /&gt;
    sub seven.numr&amp;#8217; @slash&amp;#8217; eight.numr&amp;#8217; by seveneighths;&lt;br /&gt;
    sub one.numr&amp;#8217; @slash&amp;#8217; three.numr&amp;#8217; by onethird;&lt;br /&gt;
    sub two.numr&amp;#8217; @slash&amp;#8217; three.numr&amp;#8217; by twothirds;&lt;br /&gt;
    sub one.numr&amp;#8217; @slash&amp;#8217; five.numr&amp;#8217; by onefifth;&lt;br /&gt;
    sub two.numr&amp;#8217; @slash&amp;#8217; five.numr&amp;#8217; by twofifths;&lt;br /&gt;
    sub three.numr&amp;#8217; @slash&amp;#8217; five.numr&amp;#8217; by threefifths;&lt;br /&gt;
    sub four.numr&amp;#8217; @slash&amp;#8217; five.numr&amp;#8217; by fourfifths;&lt;br /&gt;
    sub one.numr&amp;#8217; @slash&amp;#8217; six.numr&amp;#8217; by onesixth;&lt;br /&gt;
    sub five.numr&amp;#8217; @slash&amp;#8217; six.numr&amp;#8217; by fivesixths;&lt;br /&gt;
	sub [@slash @fig_dnom @prebuilt] @fig_numr&amp;#8217; by @fig_dnom;&lt;br /&gt;
} frac;&lt;br /&gt;
&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;The beautiful part is it does not need in fact any editing (you can copy and paste this feature code everywhere, if you have defined the classes &lt;strong&gt;@fig_dnom&lt;/strong&gt; [denominators] and &lt;strong&gt;@fig_numr&lt;/strong&gt; [numerators]). Of course Tal&amp;#8217;s solution is nicer, but this one is easier - and does not have above-mentioned shortcomings (namely, the space problem).&lt;/p&gt;
</description>
 <pubDate>Mon,  7 Jul 2008 15:59:41 -0700</pubDate>
 <dc:creator>acnapyx</dc:creator>
 <guid isPermaLink="false">comment 288182 at http://typophile.com</guid>
</item>
<item>
 <title>Thanks. Glyphs are not final</title>
 <link>http://typophile.com/node/47131#comment-288159</link>
 <description>&lt;p&gt;Thanks. Glyphs are not final yet. Still got lots to change, but I&amp;#8217;m glad to share the joy  I had with this frac thing.&lt;/p&gt;
&lt;p&gt;Yes, Dutch does mingle best with English and will still read as Dutch :-)&lt;br /&gt;
Viele Grüße von Arnheim&lt;/p&gt;
</description>
 <pubDate>Mon,  7 Jul 2008 13:52:14 -0700</pubDate>
 <dc:creator>Jos Buivenga</dc:creator>
 <guid isPermaLink="false">comment 288159 at http://typophile.com</guid>
</item>
<item>
 <title>Amazing. And beautiful.</title>
 <link>http://typophile.com/node/47131#comment-288144</link>
 <description>&lt;p&gt;Amazing. And beautiful. Can&amp;#8217;t wait ...&lt;/p&gt;
&lt;p&gt;Friendelijke Groeten, Tom&lt;br /&gt;
(that was almost all Nederlands I know ;-) )&lt;/p&gt;
</description>
 <pubDate>Mon,  7 Jul 2008 12:47:35 -0700</pubDate>
 <dc:creator>Bonobo</dc:creator>
 <guid isPermaLink="false">comment 288144 at http://typophile.com</guid>
</item>
<item>
 <title>True and a good point, but</title>
 <link>http://typophile.com/node/47131#comment-288052</link>
 <description>&lt;p&gt;True and a good point, but the feature is off by default and can also be applied on a selection if you want (you don&amp;#8217;t need the space) so the designer stays in control.&lt;/p&gt;
</description>
 <pubDate>Mon,  7 Jul 2008 08:10:21 -0700</pubDate>
 <dc:creator>Jos Buivenga</dc:creator>
 <guid isPermaLink="false">comment 288052 at http://typophile.com</guid>
</item>
<item>
 <title>What I don’t like about</title>
 <link>http://typophile.com/node/47131#comment-288049</link>
 <description>&lt;p&gt;What I don’t like about the frac feature like this is that the space will be removed. I think it’s the designer who decides how the fractions must look like, not the typeface. I mean with or without the space in front of the fraction.&lt;/p&gt;
&lt;p&gt;Pieter&lt;/p&gt;
</description>
 <pubDate>Mon,  7 Jul 2008 07:53:30 -0700</pubDate>
 <dc:creator>Pieter van Rosmalen</dc:creator>
 <guid isPermaLink="false">comment 288049 at http://typophile.com</guid>
</item>
<item>
 <title>It’s beautiful and it</title>
 <link>http://typophile.com/node/47131#comment-288046</link>
 <description>&lt;p&gt;It&amp;#8217;s beautiful and it works like a charm. I&amp;#8217;m curious though how other people script the frac feature.&lt;/p&gt;
&lt;p&gt;&lt;cite&gt;That is one Leming I would surely follow!&lt;/cite&gt;&lt;/p&gt;
&lt;p&gt;Just laughed my head off. Tal may be smart in programming solutions but there&amp;#8217;s no one smarter in commenting ;-)&lt;/p&gt;
</description>
 <pubDate>Mon,  7 Jul 2008 07:28:31 -0700</pubDate>
 <dc:creator>Jos Buivenga</dc:creator>
 <guid isPermaLink="false">comment 288046 at http://typophile.com</guid>
</item>
<item>
 <title>Jos,
I just now followed</title>
 <link>http://typophile.com/node/47131#comment-288043</link>
 <description>&lt;p&gt;Jos,&lt;br /&gt;
I just now followed your link to Tal&amp;#8217;s page. His way is way smart for the enduser but adds a Tad more work for the type desighner :-)&lt;br /&gt;
It is really cool that someone doing a cookbook can, in less time than it takes to flip an egg, impose the frac feature with the aid of a stylesheet! Goitta love Tal&amp;#8217;s work. That is one Leming I would surely follow!&lt;/p&gt;
&lt;p&gt;ChrisL&lt;/p&gt;
</description>
 <pubDate>Mon,  7 Jul 2008 07:12:09 -0700</pubDate>
 <dc:creator>dezcom</dc:creator>
 <guid isPermaLink="false">comment 288043 at http://typophile.com</guid>
</item>
<item>
 <title>Chris, I don’t know what</title>
 <link>http://typophile.com/node/47131#comment-288040</link>
 <description>&lt;p&gt;Chris, I don&amp;#8217;t know what the normal or standard OT feature code for fractions is. Some time ago I tried to get it working and took a look at a few Adobe Pro fonts, but I really couldn&amp;#8217;t figure out how they scripted it.&lt;/p&gt;
</description>
 <pubDate>Mon,  7 Jul 2008 07:07:43 -0700</pubDate>
 <dc:creator>Jos Buivenga</dc:creator>
 <guid isPermaLink="false">comment 288040 at http://typophile.com</guid>
</item>
<item>
 <title>Jos, how does your fraction</title>
 <link>http://typophile.com/node/47131#comment-288039</link>
 <description>&lt;p&gt;Jos, how does your fraction feature differ from the normal opentype feature code?&lt;/p&gt;
&lt;p&gt;ChrisL&lt;/p&gt;
</description>
 <pubDate>Mon,  7 Jul 2008 07:03:47 -0700</pubDate>
 <dc:creator>dezcom</dc:creator>
 <guid isPermaLink="false">comment 288039 at http://typophile.com</guid>
</item>
<item>
 <title>Museo Sans numbers</title>
 <link>http://typophile.com/node/47131</link>
 <description>After reading [[http://talleming.com/2008/04/16/fraction-fever/|Tal Leming&#039;s fraction fever]] I decided to give this a go. I&#039;ve long wanted to script a decent fraction feature, but couldn&#039;t get it right. This is working perfectly (for now ... I&#039;ve only tested it in Indesign CS2 on Tiger).


[img:frac_4561.gif]

&lt;cite&gt; &lt;/cite&gt;
Still in progress ... but Museo Sans will end up with nominators, denominators, superiors, inferiors, oldstyle figures (proportional &amp; tabular) and lining figures (proportional &amp; tabular).

[img:sups_3733.gif]
&lt;cite&gt; &lt;/cite&gt;
[img:sinf_4122.gif]
&lt;cite&gt; &lt;/cite&gt;
[img:onum_3701.gif]
&lt;cite&gt; &lt;/cite&gt;</description>
 <comments>http://typophile.com/node/47131#comments</comments>
 <category domain="http://typophile.com/taxonomy/term/54">Blog</category>
 <pubDate>Mon,  7 Jul 2008 06:43:27 -0700</pubDate>
 <dc:creator>Jos Buivenga</dc:creator>
 <guid isPermaLink="false">47131 at http://typophile.com</guid>
</item>
</channel>
</rss>
