<p dir="ltr">Thank you both. I learned something today!</p>
<div class="gmail_quote">On Jun 15, 2016 6:34 PM, "Jonathan Kew" <<a href="mailto:jfkthame@gmail.com">jfkthame@gmail.com</a>> wrote:<br type="attribution"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">On 15/6/16 20:38, Lorna Evans wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Is there a graphite-info.tex to find out what the feature names are in a<br>
Graphite font?<br>
<br>
I've haven't been able to find it and it would be useful. Or, is there<br>
some other way to display all the Graphite features in a font.<br>
</blockquote>
<br>
If I remember aright, the graphite feature support in xetex shares the same commands as the AAT feature support, so you should be able to run the AAT-info.tex file and just change the font names appropriately. (You'll need to change the Mac-specific fonts it uses to annotate the output, as well as the name of the actual target font.)<br>
<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<br>
My actual problem is that I have a font where the feature name is "Long<br>
U with Yayit, long UU with Hato". I'm able to access all other features<br>
in the font except this one. I wonder if XeTeX thinks it's too long or<br>
if it doesn't like the comma in the feature name. Would it concatenate<br>
the feature name in that case?<br>
<br>
</blockquote>
<br>
I'm pretty sure the comma is the problem; the "micro-syntax" xetex parses in the font name string will treat comma as separating two successive values for the same feature name. That is, it's intended to let you say things like:<br>
<br>
  \font\x = "MyFont:Ligatures=Common,Rare,Historical"<br>
<br>
as a shorthand for:<br>
<br>
  \font\x = "MyFont:Ligatures=Common;Ligatures=Rare;Ligatures=Historical"<br>
<br>
To work around this, I _think_ it also lets you specify features by ID (like for OpenType fonts), so you should be able to do<br>
<br>
  \font\x = "Padauk:+ulon"<br>
<br>
as suggested by Andrew in the reply I just saw arrive. :)<br>
<br>
JK<br>
<br>
<br>
<br>
--------------------------------------------------<br>
Subscriptions, Archive, and List information, etc.:<br>
 <a href="http://tug.org/mailman/listinfo/xetex" rel="noreferrer" target="_blank">http://tug.org/mailman/listinfo/xetex</a><br>
</blockquote></div>