<?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 - order of diacriticals in Unicode? - Comments</title>
 <link>http://typophile.com/node/45044</link>
 <description>Comments for &quot;order of diacriticals in Unicode?&quot;</description>
 <language>en</language>
<item>
 <title>They are not critical at</title>
 <link>http://typophile.com/node/45044#comment-277464</link>
 <description>&lt;p&gt;They are not critical at all, so let them be diacritics only. ;-)   ((or diacritical marks in the full form)).&lt;/p&gt;
</description>
 <pubDate>Fri,  9 May 2008 00:24:18 -0700</pubDate>
 <dc:creator>aszszelp</dc:creator>
 <guid isPermaLink="false">comment 277464 at http://typophile.com</guid>
</item>
<item>
 <title>The ā̱́ character can be</title>
 <link>http://typophile.com/node/45044#comment-277443</link>
 <description>&lt;p&gt;The ā̱́ character can be expressed in a two main canonical Unicode forms. The Normalization Form D (NFD), which is achieved by the complete canonical decomposition of the string:&lt;br /&gt;
&lt;code&gt;U+0061 U+0331 U+0304 U+0301&lt;/code&gt;&lt;br /&gt;
and the Normalization Form C (NFC), which is achieved by the complete canonical decomposition and a subsequent canonical composition of the string:&lt;br /&gt;
&lt;code&gt;U+0101 U+0331 U+0301&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;When creating glyphnames for characters such as ā̱́ glyph, I recommend converting the Unicode sequence to the NFC form (on the Mac, you can use Unicode Checker for that), so a sensible glyphname would be &lt;code&gt;uni010103310301&lt;/code&gt;. &lt;/p&gt;
&lt;p&gt;Your &lt;code&gt;ccmp&lt;/code&gt; code would be then:&lt;br /&gt;
&lt;code&gt;sub amacron uni0331 acutecomb by uni010103310301;&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;However, since many application don&amp;#8217;t perform Unicode normalization of the string, your ccmp code could also add code for other situations:&lt;br /&gt;
&lt;code&gt;sub amacron acutecomb uni0331 by uni010103310301;&lt;br /&gt;
sub aacute uni0304 uni0331 by uni010103310301;&lt;br /&gt;
sub aacute uni0331 uni0304 by uni010103310301;&lt;br /&gt;
sub a acutecomb uni0304 uni0331 by uni010103310301;&lt;br /&gt;
sub a acutecomb uni0331 uni0304 by uni010103310301;&lt;br /&gt;
sub a uni0331 uni0304 acutecomb by uni010103310301;&lt;br /&gt;
sub a uni0331 acutecomb uni0304 by uni010103310301;&lt;br /&gt;
sub a uni0304 uni0331 acutecomb by uni010103310301;&lt;br /&gt;
sub a uni0304 acutecomb uni0331 by uni010103310301;&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;More on this:&lt;br /&gt;
&lt;a href=&quot;http://groups.msn.com/FontLab/tipsandtricks.msnw?action=get_message&amp;amp;mview=0&amp;amp;ID_Message=3403&quot; title=&quot;http://groups.msn.com/FontLab/tipsandtricks.msnw?action=get_message&amp;amp;mview=0&amp;amp;ID_Message=3403&quot;&gt;http://groups.msn.com/FontLab/tipsandtricks.msnw?action=get_message&amp;amp;mvie...&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;More on NFC:&lt;br /&gt;
&lt;a href=&quot;http://unicode.org/reports/tr15/&quot; title=&quot;http://unicode.org/reports/tr15/&quot;&gt;http://unicode.org/reports/tr15/&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Regards,&lt;br /&gt;
Adam&lt;/p&gt;
</description>
 <pubDate>Thu,  8 May 2008 19:35:03 -0700</pubDate>
 <dc:creator>twardoch</dc:creator>
 <guid isPermaLink="false">comment 277443 at http://typophile.com</guid>
</item>
<item>
 <title>I’m not sure how relevant</title>
 <link>http://typophile.com/node/45044#comment-277307</link>
 <description>&lt;p&gt;I&amp;#8217;m not sure how relevant it is to what you are doing, but you might want to have a look at p. 111-113 of:&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.unicode.org/versions/Unicode5.0.0/ch03.pdf&quot; title=&quot;http://www.unicode.org/versions/Unicode5.0.0/ch03.pdf&quot;&gt;http://www.unicode.org/versions/Unicode5.0.0/ch03.pdf&lt;/a&gt;&lt;/p&gt;
</description>
 <pubDate>Thu,  8 May 2008 07:07:44 -0700</pubDate>
 <dc:creator>Tom Gewecke</dc:creator>
 <guid isPermaLink="false">comment 277307 at http://typophile.com</guid>
</item>
<item>
 <title>order of diacriticals in Unicode?</title>
 <link>http://typophile.com/node/45044</link>
 <description>&lt;p&gt;I&amp;#8217;m having to build a few &amp;#8220;ccmp&amp;#8221; glyphs for setting Kiowa. I seem to remember that the order of specifying diacriticals in Unicode is &amp;#8220;inside out&amp;#8221;, starting with the top.&lt;/p&gt;
&lt;p&gt;OK, no problem, the name for an &amp;#8220;oh&amp;#8221; with a macron &amp;amp; and acute above is, for example,&lt;/p&gt;
&lt;p&gt;uni006F03040301 (or shorter, uni01010301)&lt;/p&gt;
&lt;p&gt;But when you add the macron below as well, is it preferable to work &amp;#8220;inside out&amp;#8221; regardless of position, so the glyph name would be&lt;/p&gt;
&lt;p&gt;uni010103310301 (omacron, macronbelow combining, acute combining),&lt;/p&gt;
&lt;p&gt;or take care of the top first, e.g.&lt;/p&gt;
&lt;p&gt;uni010103010331 (omacron, acute combining, macronbelow combining)&lt;/p&gt;
&lt;p&gt;I suppose at some level it doesn&amp;#8217;t mater, but if there is a convention I&amp;#8217;d like to follow it, because for all I know, either the text file or the PDf may be repurposed.&lt;/p&gt;
&lt;p&gt;TIA&lt;/p&gt;
&lt;p&gt;Charles&lt;/p&gt;
</description>
 <comments>http://typophile.com/node/45044#comments</comments>
 <category domain="http://typophile.com/taxonomy/term/6">Build</category>
 <pubDate>Tue,  6 May 2008 14:36:38 -0700</pubDate>
 <dc:creator>charles_e</dc:creator>
 <guid isPermaLink="false">45044 at http://typophile.com</guid>
</item>
</channel>
</rss>
