Unicode 中的多個 IVS 對應同一字形時,應該選擇哪乙個?

時間 2021-10-19 00:00:24

1樓:Kushim Jiang

隨便。以同乙個 character 為 base character 的不同 variation sequence 對應的 form 必然是 unifiable forms,但也可能是 duplicable forms。這是由 UTS #37 保證的:

If there are sequences that correspond to the same glyphic subset, it becomes a burden for implementers, which can make a collection less likely to be implemented. As a result, in an effort to minimize the number of sequences that correspond to the same glyphic subset,registrants are strongly encouraged, but not required, to share sequences where sequences in a submission are similar to those in an existing collection. Furthermore, as part of the registration process, the registrar shall alert the registrant to the potential of sharing sequences.

The sharing of sequences across collections may occur if there is mutual agreement among the registrants for the affected collections.

另外,沒有檔案記錄 sequence 之間的 duplication,也沒有規定 duplicated sequences 的 normalization form,提交源(不是參考源)未處理 duplication 的問題。因而從編碼角度無從定義所謂的「選擇」,進而回覆只有「隨便」。

此外,@Nyoeghau 的回答完全錯誤,因為 duplication 是跨參考源乃至跨提交源的純形的概念。在處理 duplication 的問題時言及參考源,是上個世紀的過時觀念。

Keras中如何對多個Input層加權求和?

busy 你試試 from keras.layers import Layer Input from keras import backendasK from keras.models import Model class CustLayer Layer def init self,kwargs s...

如何在 DAG 中找多個點的 LCA

阮行止 如果允許離線,整個問題可以做到 的複雜度。先考慮這個問題在樹上的版本。還用這個問題出了一道胡策 HNSDFZ 7 捂臉 這是題面 這是題解 先說結論 樹上多個點的LCA,就是DFS序最小的和DFS序最大的這兩個點的LCA。例如,在下圖的樹中,2,4,6,7 的LCA就是 2,7 的LCA。以...

對多個向量的旋轉方向,有沒有簡單的演算法?

無名 借樓一用。有X,Y,a三個m維向量,求這樣的乙個a,在滿足X a與Y垂直的條件下,X a與X的夾角 無方向 最小。這個問題有解嗎? 感謝 Xi Yang的回覆,人家問得是二維向量,我沒審明白題 琢磨了一會,想出乙個方法,結果發現人家已經解決了,姑且放這裡。三個向量終點分別為為A,B,C,計算A...