We have lots of prefixes, which are normally written as one word with the root they attach to. However, if they attach to a proper name (or to a noun that is identified with God and thus capitalized), there is an orthographic convention that uses a hyphen: e.g. “pre-God” This messes up my flex analysis since it treats the two things on either side of the hyphen as separate words, giving me an unattached prefix and a (possibly obligatorily bound) root without its prefix.
Is there a way to make FLEx treat these as a single word, short of just removing the hyphens?
Brian
--
You are subscribed to the publicly accessible group "FLEx list".
Only members can post but anyone can view messages on the website.
To change your status, please write to flex_d...@sil.org.
You can join this group by going to http://groups.google.com/group/flex-list.
---
You received this message because you are subscribed to the Google Groups "FLEx list" group.
To unsubscribe from this group and stop receiving emails from it, send an email to flex-list+...@googlegroups.com.
To post to this group, send email to flex...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/flex-list/8995fffe8fc22b8fdf2c8854b79f83c3%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.
To view this discussion on the web visit https://groups.google.com/d/msgid/flex-list/9bb1dfa4-c003-fe19-9ea7-becbfa4e7a90%40gmail.com.
For more options, visit https://groups.google.com/d/optout.
Brian, there are a number of different hyphens in Unicode. The Hyphen-Minus sign is - (number #002D) typically used is what I think is causing your problem. If you want to treat all hyphen-minuses as word-forming you could do that.
Or, you can use a Non-Breaking hyphen instead. It is ‑ (code #2011). I think you can do a Search and Replace or Bulk-Edit to swap out the Hyphen-Minus (#002D) for the Non-Breaking hyphen (#2011).
Another hyphen nearby is Number ‐ (#2010). It is a Punctuation Hyphen. If I understand it correctly, I believe that would be a worse problem for you. I think it would split words up like a period would in an interlinear text.
Each of the 3 hyphens I’ve inserted here are their different Unicode points. If you select any one hyphen in a Microsoft product and then press Alt with x, it will convert to their hexadecimal number. And conversely you could type the number (leading zeroes can be omitted), select it, then type Alt x to get the hyphen character. They all look the same to me, but are different characters and do different things in FLEx interlinear texts, as I understand it.
Hope this helps,
Marlin
To view this discussion on the web visit https://groups.google.com/d/msgid/flex-list/CAApef%3Dj2vivpOJZbL2aWv2cjGOrmCd57AgiF%2B-wS4TMRzM0ziA%40mail.gmail.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/flex-list/DM5PR0201MB3478359F82A12EA982B6A88FFAF00%40DM5PR0201MB3478.namprd02.prod.outlook.com.
For more options, visit https://groups.google.com/d/optout.