<?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 - Speaking of tabular figures... - Comments</title>
 <link>http://typophile.com/node/41464</link>
 <description>Comments for &quot;Speaking of tabular figures...&quot;</description>
 <language>en</language>
<item>
 <title>Hello Nick!
This is as tiny</title>
 <link>http://typophile.com/node/41464#comment-256541</link>
 <description>&lt;p&gt;Hello Nick!&lt;br /&gt;
This is as tiny as it can be.&amp;nbsp;&amp;nbsp;:)&amp;nbsp;&amp;nbsp;You should see the code for uppercase spacing which is built on the same basic idea ...&lt;br /&gt;
Even though these additional lookups are located in the kern feature, better consider them as &lt;em&gt;spacing&lt;/em&gt; adjustment rather than kerning. They make sure that else too narrow sidebearings get &amp;#8217;normalized&amp;#8217; in context of glyphs other than superiors. It is like adjusting the fundament, based on which you would do the fine-tuning: Indeed you would go through relevant pair and kern them individually.&lt;br /&gt;
(Also I don&amp;#8217;t say that such an adjustment is required in every typeface. It&amp;#8217;s just an offer. As trivial as this solution is, it can be helpful for similar general spacing adjustments too.)&lt;/p&gt;
&lt;p&gt;Karsten&lt;/p&gt;
</description>
 <pubDate>Tue,  5 Feb 2008 13:56:27 -0800</pubDate>
 <dc:creator>k.l.</dc:creator>
 <guid isPermaLink="false">comment 256541 at http://typophile.com</guid>
</item>
<item>
 <title>Or use two (identical) sets</title>
 <link>http://typophile.com/node/41464#comment-256455</link>
 <description>&lt;p&gt;&lt;em&gt;Or use two (identical) sets of superiors, both tabular, but one is kerned while the other is not. Then ’pnum’/’tnum’ would care rather than kerning settings.&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;Yes! &lt;/p&gt;
&lt;p&gt;However, isn&amp;#8217;t your kern feature code a bit of &amp;#8220;overkill&amp;#8221;?&lt;/p&gt;
&lt;p&gt;Firstly, I wonder if kerning after superiors is ever necessary? For closing quote marks perhaps?&amp;#8212;but shouldn&amp;#8217;t a font already have enough of a left sidebearing on its quotemarks anyway?&lt;/p&gt;
&lt;p&gt;Secondly, isn&amp;#8217;t it best just to go through the alphabet and proportional figures, and kern each superior figure individually?&lt;/p&gt;
</description>
 <pubDate>Tue,  5 Feb 2008 09:23:28 -0800</pubDate>
 <dc:creator>Nick Shinn</dc:creator>
 <guid isPermaLink="false">comment 256455 at http://typophile.com</guid>
</item>
<item>
 <title>Or use two (identical) sets</title>
 <link>http://typophile.com/node/41464#comment-256433</link>
 <description>&lt;p&gt;Or use two (identical) sets of superiors, both tabular, but one is kerned while the other is not. Then &amp;#8217;pnum&amp;#8217;/&amp;#8217;tnum&amp;#8217; would care rather than kerning settings.&lt;/p&gt;
&lt;p&gt;Earlier I wrote &amp;#8212; &lt;cite&gt;... superiors are smaller and need less space &amp;#8220;within&amp;#8221; (inbetween two superiors) but more space to the outside (between normal glyph and superior).&lt;/cite&gt;&lt;/p&gt;
&lt;p&gt;As simple solution: Imagine that superiors are spaced rather tight so that a string of superiors looks well spaced, but superiors and surrounding non-superior letters are a bit too close. Now the latter can be adjusted like this:&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;@SUPERIORS = [zero.sup one.sup two.sup ...]&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;@NON_SUPERIORS = [A B C ...] # contains all glyphs not being superiors&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;feature kern {&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;# here the content of your standard kern feature:&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;lookup standardKerning {&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;pos V odieresis 10;&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;pos X one.sup 10;&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;pos @UC_V @LC_O -50;&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;} standardKerning;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;# increase space between non-superiors and superiors:&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;lookup spaceBeforeSuperiors {&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;pos @NON_SUPERIORS @SUPERIORS 15;&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;} spaceBeforeSuperiors;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;# increase space between superiors and non-superiors:&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;lookup spaceAfterSuperiors {&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;pos @SUPERIORS @NON_SUPERIORS 15;&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;} spaceAfterSuperiors;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;} kern;&lt;/p&gt;
&lt;p&gt;The trick is to use &lt;em&gt;two&lt;/em&gt; additional lookups for adding space leftside of superiors and rightside of superiors independently. Space inbetween two superiors is not touched.&lt;br /&gt;
An advantage is that effectively you do a global adjustment &amp;#8212; and are still free to &lt;em&gt;also&lt;/em&gt; kern superiors the usual way. Kerning values resulting from different lookups will add. E.g. the pair &amp;#8220;X one.sup&amp;#8221; will be kerned at 25.&lt;br /&gt;
A disadvantage is that older and most current applications would ignore this kern feature completely because it contains more than one lookup. Adobe CS2/CS3 applications &lt;cite&gt;can&lt;/cite&gt; handle this, and hopefully other applications will add support too. Considering that many Word users may not know how to switch on kerning anyway, I don&amp;#8217;t think this is a real issue.&amp;nbsp;&amp;nbsp;;-)&lt;/p&gt;
&lt;p&gt;(There&amp;#8217;s a more elegant solution with contextual positioning which would get more matches, but it does not work yet.)&lt;/p&gt;
&lt;p&gt;Karsten&lt;/p&gt;
</description>
 <pubDate>Tue,  5 Feb 2008 08:41:14 -0800</pubDate>
 <dc:creator>k.l.</dc:creator>
 <guid isPermaLink="false">comment 256433 at http://typophile.com</guid>
</item>
<item>
 <title>OK, the simplest method is</title>
 <link>http://typophile.com/node/41464#comment-255763</link>
 <description>&lt;p&gt;OK, the simplest method is to have one set of superior figures which is both monowidth AND kerned.&lt;/p&gt;
&lt;p&gt;The kerned version is of course the default according to the layout application, and that&amp;#8217;s good, because that&amp;#8217;s what&amp;#8217;s mostly used.&lt;br /&gt;
But on the rare occasion when tab superiors are required, just enter &amp;#8220;0&amp;#8221; in the kerning field and voilà&amp;#8212;tab figures!&lt;/p&gt;
</description>
 <pubDate>Fri,  1 Feb 2008 21:06:31 -0800</pubDate>
 <dc:creator>Nick Shinn</dc:creator>
 <guid isPermaLink="false">comment 255763 at http://typophile.com</guid>
</item>
<item>
 <title>and put the appropriate</title>
 <link>http://typophile.com/node/41464#comment-255462</link>
 <description>&lt;p&gt;&lt;cite&gt;and put the appropriate coding in my “tnum” feature, is this something that could be implemented by a layout application?&lt;/cite&gt;&lt;/p&gt;
&lt;p&gt;This should work. The application doesn&amp;#8217;t care which glyphs your tnum or pnum cover. The important thing is feature order. If your superior feature precedes tnum/pnum, then your addition will do. If they are ordered the other way round, then your superior feature needs to replace tabular numerals with tabular superiors, and proportional numerals with proportional superiors, because the tabular vs proportional selection has been done already.&lt;/p&gt;
&lt;p&gt;&lt;cite&gt;It seems to me that the option of Tabular or Proportional figures should be available for ALL figure styles.&lt;/cite&gt;&lt;/p&gt;
&lt;p&gt;In a way, yes. Unfortunately every addition does not add to but multiply the number of numerals ... I really hate doing numerals. They cost me at least half the design time.&amp;nbsp;&amp;nbsp;:(&lt;/p&gt;
</description>
 <pubDate>Thu, 31 Jan 2008 13:48:03 -0800</pubDate>
 <dc:creator>k.l.</dc:creator>
 <guid isPermaLink="false">comment 255462 at http://typophile.com</guid>
</item>
<item>
 <title>Here’s a usage where</title>
 <link>http://typophile.com/node/41464#comment-255454</link>
 <description>&lt;p&gt;Here&amp;#8217;s a usage where tabular superiors are required: price lists which use the &amp;#8220;superior cents&amp;#8221; style.&lt;br /&gt;
&lt;div class=&quot;imageWrap&quot;&gt;&lt;img src=&quot;/files/Sups_5098.jpg&quot; /&gt;&lt;/div&gt;&lt;/p&gt;
&lt;p&gt;It seems to me that the option of Tabular or Proportional figures should be available for ALL figure styles.&lt;br /&gt;
At the moment, the &amp;#8220;tnum&amp;#8221; feature would seem to allow this, but how do Quark and Adobe interpret this&amp;#8212;if I create an OT class of tabular superiors and another of proportional superiors, and put the appropriate coding in my &amp;#8220;tnum&amp;#8221; feature, is this something that could be implemented by a layout application?&lt;/p&gt;
&lt;p&gt;Another instance is &amp;#8220;cap figures&amp;#8221;.&lt;br /&gt;
I am producing several typefaces which have three-quarter lining figures as the default or default lining figure, but which also have cap figures (cap height and weight) for when &amp;#8220;case&amp;#8221; (all caps) is applied. At the moment, I am making most of these figures proportional and kerned, but that doesn&amp;#8217;t cover all potential uses. Ideally, and in honour of the great god Proliferation or his pal Becozwecan, why not have tab cap figures too? in fact, the font shown above IS with tab cap figs, because the superiors align with the top of the caps and cap figures, and not with the three-quarter figures.&lt;/p&gt;
</description>
 <pubDate>Thu, 31 Jan 2008 13:01:15 -0800</pubDate>
 <dc:creator>Nick Shinn</dc:creator>
 <guid isPermaLink="false">comment 255454 at http://typophile.com</guid>
</item>
<item>
 <title>“at least until Adobe</title>
 <link>http://typophile.com/node/41464#comment-254997</link>
 <description>&lt;p&gt;&amp;#8220;at least until Adobe invents three-character contextual kerning!&amp;#8221;&lt;/p&gt;
&lt;p&gt;Already exists, and is supported in the AFDKO, and in InDesign. FontLab and other retail tools don&amp;#8217;t do it yet, however. Not sure about VOLT.&lt;/p&gt;
&lt;p&gt;As it works just like other contextual stuff, I doubt that three glyphs is a limit in either AFDKO or InDesign, but I&amp;#8217;m not sure how large a context has been tested.&lt;/p&gt;
&lt;p&gt;Cheers,&lt;/p&gt;
&lt;p&gt;T&lt;/p&gt;
</description>
 <pubDate>Tue, 29 Jan 2008 16:48:11 -0800</pubDate>
 <dc:creator>Thomas Phinney</dc:creator>
 <guid isPermaLink="false">comment 254997 at http://typophile.com</guid>
</item>
<item>
 <title>Thanks, they all look good</title>
 <link>http://typophile.com/node/41464#comment-254991</link>
 <description>&lt;p&gt;Thanks, they all look good to me, except the long slash.&lt;br /&gt;
And I don&amp;#8217;t believe you made any change to vertical alignment in item 4.&lt;/p&gt;
&lt;p&gt;I&amp;#8217;ll be putting character-to-superior kerning in all my future fonts, and making the superior and inferior figures proportional and kerned. I just hope there&amp;#8217;s not some other important usage of superiors/inferiors we&amp;#8217;ve overlooked where&amp;#8217;s it&amp;#8217;s necessary for them to be tabular!&lt;/p&gt;
</description>
 <pubDate>Tue, 29 Jan 2008 16:23:35 -0800</pubDate>
 <dc:creator>Nick Shinn</dc:creator>
 <guid isPermaLink="false">comment 254991 at http://typophile.com</guid>
</item>
<item>
 <title>Sorry, I see that Nick</title>
 <link>http://typophile.com/node/41464#comment-254963</link>
 <description>&lt;p&gt;Sorry, I see that Nick wanted an example of a font I&amp;#8217;d worked over. For good or ill, here is a worked-over Adobe Garamond set just as the previous example:&lt;div class=&quot;imageWrap&quot;&gt;&lt;img src=&quot;/files/note2_3521.gif&quot; /&gt;&lt;/div&gt;&lt;/p&gt;
</description>
 <pubDate>Tue, 29 Jan 2008 14:38:14 -0800</pubDate>
 <dc:creator>charles_e</dc:creator>
 <guid isPermaLink="false">comment 254963 at http://typophile.com</guid>
</item>
<item>
 <title>Question: is there ever a</title>
 <link>http://typophile.com/node/41464#comment-254950</link>
 <description>&lt;p&gt;&lt;em&gt; Question: is there ever a need for superior figures to follow capitals or small caps?&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;Academics can and will footnote anything, so, yes!&lt;/p&gt;
</description>
 <pubDate>Tue, 29 Jan 2008 13:56:35 -0800</pubDate>
 <dc:creator>eliason</dc:creator>
 <guid isPermaLink="false">comment 254950 at http://typophile.com</guid>
</item>
<item>
 <title>The Arno was set in</title>
 <link>http://typophile.com/node/41464#comment-254948</link>
 <description>&lt;p&gt;The Arno was set in InDesign, with nothing done to the font, just used as it came from the foundry, with default ID settings.&lt;/p&gt;
&lt;p&gt;BUT. I exported a PDF, brought it into Photoshop, and had to resample for 600-wide pixels. That probably fuzzed it up. I&amp;#8217;m not use to making screen dumps, or posting images, for that matter. I may not be all that good with words, but sure better with them than with all this new stuff.&lt;/p&gt;
&lt;p&gt;Set it yourself &amp;amp; see what it looks like.&lt;/p&gt;
</description>
 <pubDate>Tue, 29 Jan 2008 13:53:10 -0800</pubDate>
 <dc:creator>charles_e</dc:creator>
 <guid isPermaLink="false">comment 254948 at http://typophile.com</guid>
</item>
<item>
 <title>I think the safest thing for</title>
 <link>http://typophile.com/node/41464#comment-254943</link>
 <description>&lt;p&gt;I think the safest thing for now might be to put in two sets, one proportional for setting &amp;#8217;numbers&amp;#8217;, and one tabular on a 1/4 em or so and shifted right until the biggest right kern &lt;em&gt;in the Family&lt;/em&gt;, is cleared, just for setting &amp;#8217;notes&amp;#8217;.&lt;/p&gt;
&lt;p&gt;&amp;#8220;OK, examples using Arno Pro, from the foundry, set in InDesign:&amp;#8221;&lt;br /&gt;
The alignment is bad, the weight, width, kerning, and spacing too. Are these drawn, generated or borrowed from Optima?&lt;/p&gt;
&lt;p&gt;I agree with Nick on the slash. I try to make it embrace from below the l.c. to above the U.C., regardless of descent. &lt;/p&gt;
&lt;p&gt;&amp;#8220;Uppercase letters usually are spaced to fit best in lowercase context.&amp;#8221;&lt;br /&gt;
A good point. Uppercase in many old style faces, are also &amp;#8217;designed&amp;#8217;, to compose best in a lowercase context.&lt;/p&gt;
&lt;p&gt;Cheers!&lt;/p&gt;
</description>
 <pubDate>Tue, 29 Jan 2008 13:43:09 -0800</pubDate>
 <dc:creator>dberlow</dc:creator>
 <guid isPermaLink="false">comment 254943 at http://typophile.com</guid>
</item>
<item>
 <title>First of all, I’ll abandon</title>
 <link>http://typophile.com/node/41464#comment-254940</link>
 <description>&lt;p&gt;First of all, I&amp;#8217;ll abandon the comment on the slash &amp;#8212; it is as deep as an old-style figure, and that&amp;#8217;s enough. And it is off-topic.&lt;/p&gt;
&lt;p&gt;Back to superscripts: Obviously, the clashes &amp;amp; too tights should be fixed, either in the font, or by the compositor as set.&lt;/p&gt;
&lt;p&gt;As to kerning the superiors themselves: whatever balance you want should be achieved. But look at the space between 7 and 4. Just like any other set of numbers, if not kerned, it is far greater than the space between 6 and 9. And 69 &amp;amp; 74 as note calls could well fall in the same paragraph Then look at 100. The space between the one and zero is large; the space between the two zeros quite small. etc. Just like with any tabular number set.&lt;/p&gt;
&lt;p&gt;The example I gave does not show the usual situation, justified copy, with all the compromises of word spacing that occur on the page. But these spaces between the word and the note call are fixed, in that they result from the sidebearings of the characters themselves. How you space them needs to accommodate a tight and a loose line. Ideally (I believe), there should be less space between the number &amp;amp; what it refers to than in the following wordspace, whether that space be tight or loose in a particular line of justified text. Nothing new here, it is simply that these numbers must be made to space correctly just like any other set of numbers.&lt;/p&gt;
&lt;p&gt;For what it is worth, when I rework a font, I make these numbers proportional (varying setwidths). I then kern them against themselves. I next kern them individually (pairs kerning) with close quotes, periods, and commas, because that is the most commonly found placement. When I get the sidebearings just right, I probably could use class kerning for period/comma &amp;amp; quoteright &amp;amp; quotedblright and the &amp;#8220;super&amp;#8221; class. I suppose if you are a foundry, you&amp;#8217;d consider it sloppy not to do so. For me, since as a comp I have to go back into the file &amp;amp; find my place, I use pairs kerning for important stuff.&lt;/p&gt;
&lt;p&gt;For the rest, these are the characters I start with:&lt;/p&gt;
&lt;p&gt;quotesingle  asterisk exclam  bracketright c d e g i j k l p r s t v w x y question uni02BE uni02BF];&lt;/p&gt;
&lt;p&gt;adjusting the class as needed for particular fonts. &lt;/p&gt;
&lt;p&gt;And typical kerns:&lt;/p&gt;
&lt;p&gt;   pos @_quotesingle @_zero.super 50;&lt;br /&gt;
   pos @_f2 @_zero.super 130;&lt;/p&gt;
&lt;p&gt;FWIW&lt;/p&gt;
</description>
 <pubDate>Tue, 29 Jan 2008 13:40:41 -0800</pubDate>
 <dc:creator>charles_e</dc:creator>
 <guid isPermaLink="false">comment 254940 at http://typophile.com</guid>
</item>
<item>
 <title>[Duplicate post deleted.]</title>
 <link>http://typophile.com/node/41464#comment-254867</link>
 <description>&lt;p&gt;[Duplicate post deleted.]&lt;/p&gt;
</description>
 <pubDate>Tue, 29 Jan 2008 09:28:42 -0800</pubDate>
 <dc:creator>Nick Shinn</dc:creator>
 <guid isPermaLink="false">comment 254867 at http://typophile.com</guid>
</item>
<item>
 <title>[An addition. Nick, I only</title>
 <link>http://typophile.com/node/41464#comment-254869</link>
 <description>&lt;p&gt;[An addition. Nick, I only saw your post after clicking the &amp;#8220;post&amp;#8221; button!]&lt;/p&gt;
&lt;p&gt;Spacing superior numerals and letters is tricky and hard to address with the current sidebearings+kerning approach: superiors are smaller and need less space &amp;#8220;within&amp;#8221; (inbetween two superiors) but more space to the outside (between normal glyph and superior). Solving this by pair kerning alone would require kerning them with almost the entire glyph set. In future this could be done contextually.&lt;br /&gt;
The same, btw, is true for all caps spacing. Uppercase letters usually are spaced to fit best in lowercase context. This implies that with the current pair kerning approach,  uppercase-uppercase pairs requires a lot of kerning to make the white space in A L T V W Y disappear. Again, contextual positioning can help by not only do pair-wise corrections but by giving uppercase letters completely different sidebearings in all caps context.&lt;/p&gt;
&lt;p&gt;Your examples uncovers a weak point. Not so much of Arno or any other particular typeface, but of the underlying font technology.&lt;/p&gt;
</description>
 <pubDate>Tue, 29 Jan 2008 09:20:45 -0800</pubDate>
 <dc:creator>k.l.</dc:creator>
 <guid isPermaLink="false">comment 254869 at http://typophile.com</guid>
</item>
<item>
 <title>Speaking of tabular figures...</title>
 <link>http://typophile.com/node/41464</link>
 <description>&lt;p&gt;Why is it that the &lt;a href=&quot;/wiki/superior%252Bfigures&quot; class=&quot;wiki&quot;&gt;superior figures&lt;/a&gt;, if present, are always on the same body? Whether you&amp;#8217;re using them for footnote calls or scientific superiors &amp;#8212; or anything I can think of &amp;#8212; they need to act like proportional numbers, not tabular. It wouldn&amp;#8217;t hurt if they were kerned, either.&lt;/p&gt;
</description>
 <comments>http://typophile.com/node/41464#comments</comments>
 <category domain="http://typophile.com/taxonomy/term/4">General Discussions</category>
 <pubDate>Mon, 28 Jan 2008 14:07:43 -0800</pubDate>
 <dc:creator>charles_e</dc:creator>
 <guid isPermaLink="false">41464 at http://typophile.com</guid>
</item>
</channel>
</rss>
