liblouis-rb 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (517) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE +520 -0
  3. data/README.md +100 -0
  4. data/Rakefile +80 -0
  5. data/ext/liblouis/braille_character.c +200 -0
  6. data/ext/liblouis/braille_table.c +198 -0
  7. data/ext/liblouis/braille_text.c +223 -0
  8. data/ext/liblouis/extconf.rb +73 -0
  9. data/ext/liblouis/liblouis.c +168 -0
  10. data/ext/liblouis/liblouis_ext.h +49 -0
  11. data/ext/liblouis/table_source.c +161 -0
  12. data/ext/liblouis/translation.c +443 -0
  13. data/liblouis-rb.gemspec +49 -0
  14. data/spec/liblouis_spec.rb +62 -0
  15. data/test/integration/packaging_test.rb +82 -0
  16. data/test/table_source_cases.rb +9 -0
  17. data/test/test_braille_character.rb +62 -0
  18. data/test/test_braille_table.rb +379 -0
  19. data/test/test_braille_text.rb +30 -0
  20. data/test/test_helper.rb +7 -0
  21. data/test/translation_cases.rb +33 -0
  22. data/vendor/liblouis/COPYING +674 -0
  23. data/vendor/liblouis/COPYING.LESSER +502 -0
  24. data/vendor/liblouis/configure.ac +290 -0
  25. data/vendor/liblouis/liblouis/commonTranslationFunctions.c +95 -0
  26. data/vendor/liblouis/liblouis/compileTranslationTable.c +5515 -0
  27. data/vendor/liblouis/liblouis/internal.h +781 -0
  28. data/vendor/liblouis/liblouis/liblouis.h.in +514 -0
  29. data/vendor/liblouis/liblouis/logging.c +233 -0
  30. data/vendor/liblouis/liblouis/lou_backTranslateString.c +1855 -0
  31. data/vendor/liblouis/liblouis/lou_translateString.c +4177 -0
  32. data/vendor/liblouis/liblouis/maketable.c +463 -0
  33. data/vendor/liblouis/liblouis/metadata.c +1258 -0
  34. data/vendor/liblouis/liblouis/pattern.c +1632 -0
  35. data/vendor/liblouis/liblouis/utils.c +448 -0
  36. data/vendor/liblouis/tables/Es-Es-G0.utb +248 -0
  37. data/vendor/liblouis/tables/IPA-unicode-range.uti +200 -0
  38. data/vendor/liblouis/tables/IPA.utb +164 -0
  39. data/vendor/liblouis/tables/Lv-Lv-g1.utb +509 -0
  40. data/vendor/liblouis/tables/Makefile.am +503 -0
  41. data/vendor/liblouis/tables/Pl-Pl-g1.utb +312 -0
  42. data/vendor/liblouis/tables/README +6 -0
  43. data/vendor/liblouis/tables/afr-za-g1.ctb +63 -0
  44. data/vendor/liblouis/tables/afr-za-g2.ctb +1050 -0
  45. data/vendor/liblouis/tables/akk-borger.utb +997 -0
  46. data/vendor/liblouis/tables/akk.utb +1002 -0
  47. data/vendor/liblouis/tables/ancient-languages-borger.utb +114 -0
  48. data/vendor/liblouis/tables/ancient-languages-us.utb +114 -0
  49. data/vendor/liblouis/tables/ar-ar-comp8.utb +293 -0
  50. data/vendor/liblouis/tables/ar-ar-g1-core.uti +291 -0
  51. data/vendor/liblouis/tables/ar-ar-g1.utb +26 -0
  52. data/vendor/liblouis/tables/ar-ar-g2.ctb +447 -0
  53. data/vendor/liblouis/tables/ar-ar-math.uti +501 -0
  54. data/vendor/liblouis/tables/ar.tbl +17 -0
  55. data/vendor/liblouis/tables/as-in-g1.utb +27 -0
  56. data/vendor/liblouis/tables/as.tbl +18 -0
  57. data/vendor/liblouis/tables/aw-in-g1.utb +27 -0
  58. data/vendor/liblouis/tables/awa.tbl +18 -0
  59. data/vendor/liblouis/tables/ba.utb +64 -0
  60. data/vendor/liblouis/tables/be-in-g1.utb +27 -0
  61. data/vendor/liblouis/tables/bel-comp.utb +42 -0
  62. data/vendor/liblouis/tables/bel-detailed.utb +32 -0
  63. data/vendor/liblouis/tables/bel.utb +61 -0
  64. data/vendor/liblouis/tables/bengali.cti +238 -0
  65. data/vendor/liblouis/tables/bg.ctb +215 -0
  66. data/vendor/liblouis/tables/bg.dis +84 -0
  67. data/vendor/liblouis/tables/bg.tbl +21 -0
  68. data/vendor/liblouis/tables/bg.utb +454 -0
  69. data/vendor/liblouis/tables/bh.ctb +24 -0
  70. data/vendor/liblouis/tables/bh.tbl +17 -0
  71. data/vendor/liblouis/tables/bn.tbl +18 -0
  72. data/vendor/liblouis/tables/bo.ctb +184 -0
  73. data/vendor/liblouis/tables/bo.tbl +21 -0
  74. data/vendor/liblouis/tables/boxes.ctb +162 -0
  75. data/vendor/liblouis/tables/br-in-g1.utb +27 -0
  76. data/vendor/liblouis/tables/bra.tbl +18 -0
  77. data/vendor/liblouis/tables/braille-patterns.cti +287 -0
  78. data/vendor/liblouis/tables/ca-chardefs.cti +225 -0
  79. data/vendor/liblouis/tables/ca-g1.ctb +46 -0
  80. data/vendor/liblouis/tables/ca.tbl +18 -0
  81. data/vendor/liblouis/tables/chr-us-g1.ctb +180 -0
  82. data/vendor/liblouis/tables/ckb-chardefs.cti +219 -0
  83. data/vendor/liblouis/tables/ckb-g1.ctb +31 -0
  84. data/vendor/liblouis/tables/ckb-translation.cti +131 -0
  85. data/vendor/liblouis/tables/ckb.tbl +18 -0
  86. data/vendor/liblouis/tables/compress.cti +44 -0
  87. data/vendor/liblouis/tables/controlchars.cti +27 -0
  88. data/vendor/liblouis/tables/cop-eg-comp8.utb +255 -0
  89. data/vendor/liblouis/tables/cop.utb +231 -0
  90. data/vendor/liblouis/tables/corrections.cti +47 -0
  91. data/vendor/liblouis/tables/countries.cti +263 -0
  92. data/vendor/liblouis/tables/critical-apparatus.uti +54 -0
  93. data/vendor/liblouis/tables/cs-chardefs.cti +385 -0
  94. data/vendor/liblouis/tables/cs-comp8.utb +405 -0
  95. data/vendor/liblouis/tables/cs-g1.ctb +37 -0
  96. data/vendor/liblouis/tables/cs-translation.cti +63 -0
  97. data/vendor/liblouis/tables/cs.tbl +20 -0
  98. data/vendor/liblouis/tables/cuneiform-transliterated-compact.utb +432 -0
  99. data/vendor/liblouis/tables/cuneiform-transliterated.utb +160 -0
  100. data/vendor/liblouis/tables/cy-cy-g1.utb +487 -0
  101. data/vendor/liblouis/tables/cy-cy-g2.ctb +199 -0
  102. data/vendor/liblouis/tables/cy.tbl +19 -0
  103. data/vendor/liblouis/tables/da-dk-6miscChars.cti +385 -0
  104. data/vendor/liblouis/tables/da-dk-6miscChars_1993.cti +412 -0
  105. data/vendor/liblouis/tables/da-dk-8miscChars.cti +90 -0
  106. data/vendor/liblouis/tables/da-dk-8miscChars_1993.cti +102 -0
  107. data/vendor/liblouis/tables/da-dk-g08.ctb +290 -0
  108. data/vendor/liblouis/tables/da-dk-g08_1993.ctb +331 -0
  109. data/vendor/liblouis/tables/da-dk-g16-lit_1993.ctb +294 -0
  110. data/vendor/liblouis/tables/da-dk-g16.ctb +289 -0
  111. data/vendor/liblouis/tables/da-dk-g16_1993.ctb +305 -0
  112. data/vendor/liblouis/tables/da-dk-g18.ctb +545 -0
  113. data/vendor/liblouis/tables/da-dk-g18_1993.ctb +563 -0
  114. data/vendor/liblouis/tables/da-dk-g2.dic +7439 -0
  115. data/vendor/liblouis/tables/da-dk-g26-lit_1993.ctb +898 -0
  116. data/vendor/liblouis/tables/da-dk-g26.ctb +1345 -0
  117. data/vendor/liblouis/tables/da-dk-g26_1993.ctb +1127 -0
  118. data/vendor/liblouis/tables/da-dk-g26l-lit_1993.ctb +588 -0
  119. data/vendor/liblouis/tables/da-dk-g26l_1993.ctb +604 -0
  120. data/vendor/liblouis/tables/da-dk-g28.ctb +2426 -0
  121. data/vendor/liblouis/tables/da-dk-g28_1993.ctb +2063 -0
  122. data/vendor/liblouis/tables/da-dk-g28l_1993.ctb +1594 -0
  123. data/vendor/liblouis/tables/da-dk-octobraille.dis +316 -0
  124. data/vendor/liblouis/tables/da-dk-octobraille_1993.dis +313 -0
  125. data/vendor/liblouis/tables/de-accents-detailed.cti +214 -0
  126. data/vendor/liblouis/tables/de-accents.cti +214 -0
  127. data/vendor/liblouis/tables/de-chardefs6.cti +289 -0
  128. data/vendor/liblouis/tables/de-chardefs8.cti +278 -0
  129. data/vendor/liblouis/tables/de-chess.ctb +37 -0
  130. data/vendor/liblouis/tables/de-comp6.utb +226 -0
  131. data/vendor/liblouis/tables/de-de-comp8.ctb +492 -0
  132. data/vendor/liblouis/tables/de-de.dis +331 -0
  133. data/vendor/liblouis/tables/de-eurobrl6.dis +101 -0
  134. data/vendor/liblouis/tables/de-eurobrl6u.dis +96 -0
  135. data/vendor/liblouis/tables/de-g0-core.uti +732 -0
  136. data/vendor/liblouis/tables/de-g0-detailed.utb +84 -0
  137. data/vendor/liblouis/tables/de-g0.utb +57 -0
  138. data/vendor/liblouis/tables/de-g1-core-patterns.dic +4863 -0
  139. data/vendor/liblouis/tables/de-g1-core.cti +67 -0
  140. data/vendor/liblouis/tables/de-g1-detailed.ctb +79 -0
  141. data/vendor/liblouis/tables/de-g1.ctb +54 -0
  142. data/vendor/liblouis/tables/de-g2-core-patterns.dic +26711 -0
  143. data/vendor/liblouis/tables/de-g2-core.cti +607 -0
  144. data/vendor/liblouis/tables/de-g2-detailed.ctb +60 -0
  145. data/vendor/liblouis/tables/de-g2.ctb +57 -0
  146. data/vendor/liblouis/tables/devanagari.cti +325 -0
  147. data/vendor/liblouis/tables/digits6Dots.uti +30 -0
  148. data/vendor/liblouis/tables/digits6DotsPlusDot6.uti +30 -0
  149. data/vendor/liblouis/tables/digits8Dots.uti +30 -0
  150. data/vendor/liblouis/tables/dra.ctb +23 -0
  151. data/vendor/liblouis/tables/dra.tbl +21 -0
  152. data/vendor/liblouis/tables/el.ctb +775 -0
  153. data/vendor/liblouis/tables/en-GB-g2.ctb +829 -0
  154. data/vendor/liblouis/tables/en-chardefs.cti +193 -0
  155. data/vendor/liblouis/tables/en-chess.ctb +37 -0
  156. data/vendor/liblouis/tables/en-g3-patterns.dic +11194 -0
  157. data/vendor/liblouis/tables/en-g3.ctb +2261 -0
  158. data/vendor/liblouis/tables/en-gb-comp8.ctb +282 -0
  159. data/vendor/liblouis/tables/en-gb-g1.utb +527 -0
  160. data/vendor/liblouis/tables/en-in-g1.ctb +162 -0
  161. data/vendor/liblouis/tables/en-nabcc.utb +166 -0
  162. data/vendor/liblouis/tables/en-nz-g1.utb +65 -0
  163. data/vendor/liblouis/tables/en-nz-g2.ctb +46 -0
  164. data/vendor/liblouis/tables/en-ueb-chardefs.uti +938 -0
  165. data/vendor/liblouis/tables/en-ueb-g1.ctb +167 -0
  166. data/vendor/liblouis/tables/en-ueb-g2.ctb +3925 -0
  167. data/vendor/liblouis/tables/en-ueb-math.ctb +71 -0
  168. data/vendor/liblouis/tables/en-us-brf.dis +102 -0
  169. data/vendor/liblouis/tables/en-us-comp6.ctb +149 -0
  170. data/vendor/liblouis/tables/en-us-comp8-ext.utb +626 -0
  171. data/vendor/liblouis/tables/en-us-comp8.ctb +62 -0
  172. data/vendor/liblouis/tables/en-us-compbrl.uti +69 -0
  173. data/vendor/liblouis/tables/en-us-emphasis.uti +45 -0
  174. data/vendor/liblouis/tables/en-us-g1.ctb +199 -0
  175. data/vendor/liblouis/tables/en-us-g2.ctb +1081 -0
  176. data/vendor/liblouis/tables/en-us-interline.ctb +1126 -0
  177. data/vendor/liblouis/tables/en-us-mathtext.ctb +880 -0
  178. data/vendor/liblouis/tables/en_CA.ctb +195 -0
  179. data/vendor/liblouis/tables/en_CA.tbl +21 -0
  180. data/vendor/liblouis/tables/en_GB.tbl +26 -0
  181. data/vendor/liblouis/tables/en_US-comp8-ext.tbl +15 -0
  182. data/vendor/liblouis/tables/en_US.tbl +26 -0
  183. data/vendor/liblouis/tables/eo-g1-x-system.ctb +85 -0
  184. data/vendor/liblouis/tables/eo-g1.ctb +165 -0
  185. data/vendor/liblouis/tables/eo.tbl +14 -0
  186. data/vendor/liblouis/tables/es-chardefs.cti +206 -0
  187. data/vendor/liblouis/tables/es-g1.ctb +36 -0
  188. data/vendor/liblouis/tables/es-g2.ctb +955 -0
  189. data/vendor/liblouis/tables/es-new.dis +284 -0
  190. data/vendor/liblouis/tables/es-no.utb +79 -0
  191. data/vendor/liblouis/tables/es-old.dis +284 -0
  192. data/vendor/liblouis/tables/es.tbl +19 -0
  193. data/vendor/liblouis/tables/et-6dot.utb +269 -0
  194. data/vendor/liblouis/tables/et-g0.utb +139 -0
  195. data/vendor/liblouis/tables/ethio-g1.ctb +335 -0
  196. data/vendor/liblouis/tables/eurodefs.cti +107 -0
  197. data/vendor/liblouis/tables/fa-ir-comp8.ctb +250 -0
  198. data/vendor/liblouis/tables/fa-ir-g1.utb +311 -0
  199. data/vendor/liblouis/tables/fi-fi-8dot.ctb +278 -0
  200. data/vendor/liblouis/tables/fi.utb +354 -0
  201. data/vendor/liblouis/tables/fil-g2.ctb +491 -0
  202. data/vendor/liblouis/tables/fr-bfu-comp6-puncs-math.uti +351 -0
  203. data/vendor/liblouis/tables/fr-bfu-comp6.utb +238 -0
  204. data/vendor/liblouis/tables/fr-bfu-comp68.cti +251 -0
  205. data/vendor/liblouis/tables/fr-bfu-comp8.utb +323 -0
  206. data/vendor/liblouis/tables/fr-bfu-g2.ctb +4644 -0
  207. data/vendor/liblouis/tables/ga-g1.utb +95 -0
  208. data/vendor/liblouis/tables/ga-g2.ctb +231 -0
  209. data/vendor/liblouis/tables/gd.ctb +123 -0
  210. data/vendor/liblouis/tables/gd.tbl +21 -0
  211. data/vendor/liblouis/tables/gez.tbl +21 -0
  212. data/vendor/liblouis/tables/gon.ctb +25 -0
  213. data/vendor/liblouis/tables/gon.tbl +17 -0
  214. data/vendor/liblouis/tables/gr-pl-comp8.uti +256 -0
  215. data/vendor/liblouis/tables/grc-international-common.uti +104 -0
  216. data/vendor/liblouis/tables/grc-international-composed.uti +268 -0
  217. data/vendor/liblouis/tables/grc-international-decomposed.uti +268 -0
  218. data/vendor/liblouis/tables/grc-international-en-composed.utb +54 -0
  219. data/vendor/liblouis/tables/grc-international-en.utb +206 -0
  220. data/vendor/liblouis/tables/grc-international-es.utb +228 -0
  221. data/vendor/liblouis/tables/gu-in-g1.utb +27 -0
  222. data/vendor/liblouis/tables/gu.tbl +18 -0
  223. data/vendor/liblouis/tables/gujarati.cti +221 -0
  224. data/vendor/liblouis/tables/gurumuki.cti +393 -0
  225. data/vendor/liblouis/tables/haw-us-g1.ctb +54 -0
  226. data/vendor/liblouis/tables/hbo-cantillated-rules.uti +71 -0
  227. data/vendor/liblouis/tables/hbo-cantillated.utb +109 -0
  228. data/vendor/liblouis/tables/hbo-common-rules.uti +152 -0
  229. data/vendor/liblouis/tables/hbo-ihbc-rules.uti +58 -0
  230. data/vendor/liblouis/tables/hbo-slim-rules.uti +68 -0
  231. data/vendor/liblouis/tables/hbo-slim.utb +100 -0
  232. data/vendor/liblouis/tables/hbo.utb +107 -0
  233. data/vendor/liblouis/tables/he-IL-comp8.utb +464 -0
  234. data/vendor/liblouis/tables/he-IL.utb +406 -0
  235. data/vendor/liblouis/tables/he-common-consonants.uti +102 -0
  236. data/vendor/liblouis/tables/he-common-vowels-ihbc.uti +161 -0
  237. data/vendor/liblouis/tables/hi-in-g1.utb +27 -0
  238. data/vendor/liblouis/tables/hi.tbl +18 -0
  239. data/vendor/liblouis/tables/hr-chardefs.cti +278 -0
  240. data/vendor/liblouis/tables/hr-comp8.tbl +21 -0
  241. data/vendor/liblouis/tables/hr-comp8.utb +239 -0
  242. data/vendor/liblouis/tables/hr-digits.uti +40 -0
  243. data/vendor/liblouis/tables/hr-g1.ctb +36 -0
  244. data/vendor/liblouis/tables/hr-g1.tbl +9 -0
  245. data/vendor/liblouis/tables/hr-translation.cti +364 -0
  246. data/vendor/liblouis/tables/ht-frenchcompatibility.uti +61 -0
  247. data/vendor/liblouis/tables/ht-g1.utb +114 -0
  248. data/vendor/liblouis/tables/hu-backtranslate-correction.dis +38 -0
  249. data/vendor/liblouis/tables/hu-backtranslate-word-corrections.cti +4293 -0
  250. data/vendor/liblouis/tables/hu-chardefs.cti +298 -0
  251. data/vendor/liblouis/tables/hu-exceptionwords.cti +3204 -0
  252. data/vendor/liblouis/tables/hu-hu-comp8.ctb +183 -0
  253. data/vendor/liblouis/tables/hu-hu-g1.ctb +129 -0
  254. data/vendor/liblouis/tables/hu-hu-g1_braille_input.cti +486 -0
  255. data/vendor/liblouis/tables/hu-hu-g2.ctb +270 -0
  256. data/vendor/liblouis/tables/hu-hu-g2_exceptions.cti +1164 -0
  257. data/vendor/liblouis/tables/hy.ctb +121 -0
  258. data/vendor/liblouis/tables/hy.tbl +21 -0
  259. data/vendor/liblouis/tables/hyph_cs_CZ.dic +3637 -0
  260. data/vendor/liblouis/tables/hyph_da_DK.dic +8896 -0
  261. data/vendor/liblouis/tables/hyph_de_DE.dic +5799 -0
  262. data/vendor/liblouis/tables/hyph_en_US.dic +5537 -0
  263. data/vendor/liblouis/tables/hyph_eo.dic +1024 -0
  264. data/vendor/liblouis/tables/hyph_es_ES.dic +877 -0
  265. data/vendor/liblouis/tables/hyph_fr_FR.dic +1067 -0
  266. data/vendor/liblouis/tables/hyph_hu_HU.dic +98519 -0
  267. data/vendor/liblouis/tables/hyph_it_IT.dic +410 -0
  268. data/vendor/liblouis/tables/hyph_nb_NO.dic +27142 -0
  269. data/vendor/liblouis/tables/hyph_nl_NL.dic +12725 -0
  270. data/vendor/liblouis/tables/hyph_nn_NO.dic +27142 -0
  271. data/vendor/liblouis/tables/hyph_pl_PL.dic +4074 -0
  272. data/vendor/liblouis/tables/hyph_pt_PT.dic +308 -0
  273. data/vendor/liblouis/tables/hyph_ru.dic +6480 -0
  274. data/vendor/liblouis/tables/hyph_sv_SE.dic +4697 -0
  275. data/vendor/liblouis/tables/is-chardefs6.cti +170 -0
  276. data/vendor/liblouis/tables/is-chardefs8.cti +293 -0
  277. data/vendor/liblouis/tables/is.ctb +157 -0
  278. data/vendor/liblouis/tables/is.tbl +18 -0
  279. data/vendor/liblouis/tables/it-it-comp6.utb +404 -0
  280. data/vendor/liblouis/tables/it-it-comp8.utb +663 -0
  281. data/vendor/liblouis/tables/iu-ca-g1.ctb +236 -0
  282. data/vendor/liblouis/tables/ja-kantenji-ucs2.utb +11448 -0
  283. data/vendor/liblouis/tables/ja-kantenji.utb +53 -0
  284. data/vendor/liblouis/tables/ja-rokutenkanji.utb +8710 -0
  285. data/vendor/liblouis/tables/ka-in-g1.utb +27 -0
  286. data/vendor/liblouis/tables/ka.utb +128 -0
  287. data/vendor/liblouis/tables/kannada.cti +282 -0
  288. data/vendor/liblouis/tables/kh-in-g1.utb +26 -0
  289. data/vendor/liblouis/tables/kha.tbl +18 -0
  290. data/vendor/liblouis/tables/kk.utb +77 -0
  291. data/vendor/liblouis/tables/km-g1.utb +412 -0
  292. data/vendor/liblouis/tables/kmr.tbl +108 -0
  293. data/vendor/liblouis/tables/kn.tbl +18 -0
  294. data/vendor/liblouis/tables/ko-2006-g1.ctb +49 -0
  295. data/vendor/liblouis/tables/ko-2006-g2.ctb +53 -0
  296. data/vendor/liblouis/tables/ko-2006.cti +190 -0
  297. data/vendor/liblouis/tables/ko-chars.cti +15140 -0
  298. data/vendor/liblouis/tables/ko-g1-rules.cti +634 -0
  299. data/vendor/liblouis/tables/ko-g1.ctb +48 -0
  300. data/vendor/liblouis/tables/ko-g2-rules.cti +9263 -0
  301. data/vendor/liblouis/tables/ko-g2.ctb +52 -0
  302. data/vendor/liblouis/tables/ko.cti +223 -0
  303. data/vendor/liblouis/tables/kok.ctb +24 -0
  304. data/vendor/liblouis/tables/kok.tbl +17 -0
  305. data/vendor/liblouis/tables/kru.ctb +24 -0
  306. data/vendor/liblouis/tables/kru.tbl +17 -0
  307. data/vendor/liblouis/tables/ks-in-g1.utb +27 -0
  308. data/vendor/liblouis/tables/latinLetterDef6Dots.uti +78 -0
  309. data/vendor/liblouis/tables/latinLetterDef8Dots.uti +75 -0
  310. data/vendor/liblouis/tables/latinLowercase.uti +389 -0
  311. data/vendor/liblouis/tables/latinUppercaseComp6.uti +78 -0
  312. data/vendor/liblouis/tables/lg-ug-g1.utb +60 -0
  313. data/vendor/liblouis/tables/litdigits6Dots.uti +30 -0
  314. data/vendor/liblouis/tables/litdigits6DotsPlusDot6.uti +30 -0
  315. data/vendor/liblouis/tables/lo-g1.utb +3127 -0
  316. data/vendor/liblouis/tables/loweredDigits6Dots.uti +30 -0
  317. data/vendor/liblouis/tables/loweredDigits8Dots.uti +30 -0
  318. data/vendor/liblouis/tables/lt-6dot.utb +308 -0
  319. data/vendor/liblouis/tables/lt-8dot.utb +281 -0
  320. data/vendor/liblouis/tables/lt.ctb +313 -0
  321. data/vendor/liblouis/tables/lv.tbl +22 -0
  322. data/vendor/liblouis/tables/maketablelist.sh +52 -0
  323. data/vendor/liblouis/tables/malayalam.cti +674 -0
  324. data/vendor/liblouis/tables/mao-nz-g1.ctb +65 -0
  325. data/vendor/liblouis/tables/marburg_single_cell_defs.cti +66 -0
  326. data/vendor/liblouis/tables/marburg_unicode_defs.cti +297 -0
  327. data/vendor/liblouis/tables/mk-g1.utb +240 -0
  328. data/vendor/liblouis/tables/ml-in-g1.utb +27 -0
  329. data/vendor/liblouis/tables/ml.tbl +21 -0
  330. data/vendor/liblouis/tables/mn-MN-common.cti +110 -0
  331. data/vendor/liblouis/tables/mn-MN-g1.utb +52 -0
  332. data/vendor/liblouis/tables/mn-MN-g2.ctb +50 -0
  333. data/vendor/liblouis/tables/mn-in-g1.utb +27 -0
  334. data/vendor/liblouis/tables/mni.tbl +18 -0
  335. data/vendor/liblouis/tables/mr-in-g1.utb +27 -0
  336. data/vendor/liblouis/tables/mr.tbl +18 -0
  337. data/vendor/liblouis/tables/ms-my-g2.ctb +4897 -0
  338. data/vendor/liblouis/tables/mt.ctb +114 -0
  339. data/vendor/liblouis/tables/mt.tbl +21 -0
  340. data/vendor/liblouis/tables/mun.ctb +24 -0
  341. data/vendor/liblouis/tables/mun.tbl +17 -0
  342. data/vendor/liblouis/tables/mwr.ctb +24 -0
  343. data/vendor/liblouis/tables/mwr.tbl +17 -0
  344. data/vendor/liblouis/tables/my-g1.utb +771 -0
  345. data/vendor/liblouis/tables/my-g2.ctb +3805 -0
  346. data/vendor/liblouis/tables/ne.ctb +22 -0
  347. data/vendor/liblouis/tables/ne.tbl +18 -0
  348. data/vendor/liblouis/tables/nemethdefs.cti +382 -0
  349. data/vendor/liblouis/tables/nl-BE.dis +532 -0
  350. data/vendor/liblouis/tables/nl-NL-g0.utb.in +646 -0
  351. data/vendor/liblouis/tables/nl-chardefs.uti.in +455 -0
  352. data/vendor/liblouis/tables/nl-comp8.utb +411 -0
  353. data/vendor/liblouis/tables/nl-print.dis +551 -0
  354. data/vendor/liblouis/tables/nl-unicode.dis +540 -0
  355. data/vendor/liblouis/tables/no-no-8dot-fallback-6dot-g0.utb +59 -0
  356. data/vendor/liblouis/tables/no-no-8dot.utb +629 -0
  357. data/vendor/liblouis/tables/no-no-braillo-047-01.dis +247 -0
  358. data/vendor/liblouis/tables/no-no-chardefs6.uti +305 -0
  359. data/vendor/liblouis/tables/no-no-comp8.ctb +323 -0
  360. data/vendor/liblouis/tables/no-no-cyrillic6dot.uti +95 -0
  361. data/vendor/liblouis/tables/no-no-g0.utb +320 -0
  362. data/vendor/liblouis/tables/no-no-g1.ctb +272 -0
  363. data/vendor/liblouis/tables/no-no-g2.ctb +737 -0
  364. data/vendor/liblouis/tables/no-no-g3.ctb +3597 -0
  365. data/vendor/liblouis/tables/no-no-generic.ctb +295 -0
  366. data/vendor/liblouis/tables/no-no-generic.dis +295 -0
  367. data/vendor/liblouis/tables/no-no-latinLetterDef6Dots_diacritics.uti +852 -0
  368. data/vendor/liblouis/tables/no-no.dis +291 -0
  369. data/vendor/liblouis/tables/np-in-g1.utb +27 -0
  370. data/vendor/liblouis/tables/nso-za-g1.utb +38 -0
  371. data/vendor/liblouis/tables/nso-za-g2.ctb +38 -0
  372. data/vendor/liblouis/tables/ny-mw.utb +70 -0
  373. data/vendor/liblouis/tables/or-in-g1.utb +27 -0
  374. data/vendor/liblouis/tables/or.tbl +18 -0
  375. data/vendor/liblouis/tables/oriya.cti +238 -0
  376. data/vendor/liblouis/tables/ovd-6g0.utb +64 -0
  377. data/vendor/liblouis/tables/ovd-8g0.utb +81 -0
  378. data/vendor/liblouis/tables/pa.tbl +18 -0
  379. data/vendor/liblouis/tables/pi.ctb +24 -0
  380. data/vendor/liblouis/tables/pi.tbl +17 -0
  381. data/vendor/liblouis/tables/pl-pl-comp8.ctb +658 -0
  382. data/vendor/liblouis/tables/pl.tbl +12 -0
  383. data/vendor/liblouis/tables/printables.cti +70 -0
  384. data/vendor/liblouis/tables/pt-comp6.utb +299 -0
  385. data/vendor/liblouis/tables/pt-pt-comp8.ctb +395 -0
  386. data/vendor/liblouis/tables/pt-pt-g1.utb +1312 -0
  387. data/vendor/liblouis/tables/pt-pt-g2.ctb +874 -0
  388. data/vendor/liblouis/tables/pt.tbl +20 -0
  389. data/vendor/liblouis/tables/pu-in-g1.utb +42 -0
  390. data/vendor/liblouis/tables/quotation-marks.uti +30 -0
  391. data/vendor/liblouis/tables/ro-g0.utb +85 -0
  392. data/vendor/liblouis/tables/ro.ctb +126 -0
  393. data/vendor/liblouis/tables/ro.tbl +21 -0
  394. data/vendor/liblouis/tables/ru-brf.dis +116 -0
  395. data/vendor/liblouis/tables/ru-comp6.utb +258 -0
  396. data/vendor/liblouis/tables/ru-comp8.utb +740 -0
  397. data/vendor/liblouis/tables/ru-letters.dis +145 -0
  398. data/vendor/liblouis/tables/ru-litbrl-detailed.utb +77 -0
  399. data/vendor/liblouis/tables/ru-litbrl.ctb +857 -0
  400. data/vendor/liblouis/tables/ru-math.uti +395 -0
  401. data/vendor/liblouis/tables/ru-ru-g1.ctb +804 -0
  402. data/vendor/liblouis/tables/ru-unicode.dis +121 -0
  403. data/vendor/liblouis/tables/rw-rw-g1.utb +133 -0
  404. data/vendor/liblouis/tables/sa-in-g1.utb +27 -0
  405. data/vendor/liblouis/tables/sa.tbl +18 -0
  406. data/vendor/liblouis/tables/sah.utb +72 -0
  407. data/vendor/liblouis/tables/sd.tbl +18 -0
  408. data/vendor/liblouis/tables/se-se.ctb +246 -0
  409. data/vendor/liblouis/tables/se-se.dis +334 -0
  410. data/vendor/liblouis/tables/si-in-g1.utb +27 -0
  411. data/vendor/liblouis/tables/sin.cti +213 -0
  412. data/vendor/liblouis/tables/sin.utb +35 -0
  413. data/vendor/liblouis/tables/sk-g1.ctb +1019 -0
  414. data/vendor/liblouis/tables/sk-sk-g1.utb +206 -0
  415. data/vendor/liblouis/tables/sk-sk.utb +112 -0
  416. data/vendor/liblouis/tables/sl-si-comp8.ctb +204 -0
  417. data/vendor/liblouis/tables/sl-si-g1.utb +471 -0
  418. data/vendor/liblouis/tables/sl.tbl +20 -0
  419. data/vendor/liblouis/tables/smi-6g0.utb +64 -0
  420. data/vendor/liblouis/tables/smi-8g0.utb +61 -0
  421. data/vendor/liblouis/tables/sot-za-g1.ctb +72 -0
  422. data/vendor/liblouis/tables/sot-za-g2.ctb +244 -0
  423. data/vendor/liblouis/tables/spaces.uti +62 -0
  424. data/vendor/liblouis/tables/sr-Cyrl.ctb +59 -0
  425. data/vendor/liblouis/tables/sr-common.cti +161 -0
  426. data/vendor/liblouis/tables/sr-cyrletters.cti +92 -0
  427. data/vendor/liblouis/tables/sr-g1.ctb +57 -0
  428. data/vendor/liblouis/tables/sr-latletters.cti +45 -0
  429. data/vendor/liblouis/tables/sv-1989.ctb +241 -0
  430. data/vendor/liblouis/tables/sv-1996.ctb +180 -0
  431. data/vendor/liblouis/tables/sv-6common.uti +1199 -0
  432. data/vendor/liblouis/tables/sv-6g0d.utb +508 -0
  433. data/vendor/liblouis/tables/sv-6g0p.utb +61 -0
  434. data/vendor/liblouis/tables/sv-6g1.uti +106 -0
  435. data/vendor/liblouis/tables/sv-6g1d.ctb +57 -0
  436. data/vendor/liblouis/tables/sv-6g2.uti +254 -0
  437. data/vendor/liblouis/tables/sv-6g2d.ctb +57 -0
  438. data/vendor/liblouis/tables/sv-8g0d.utb +495 -0
  439. data/vendor/liblouis/tables/sv-8g0n.utb +1236 -0
  440. data/vendor/liblouis/tables/sv-8g1.uti +199 -0
  441. data/vendor/liblouis/tables/sv-8g1d.ctb +73 -0
  442. data/vendor/liblouis/tables/sv-8g1n.ctb +73 -0
  443. data/vendor/liblouis/tables/sv-8g2.uti +486 -0
  444. data/vendor/liblouis/tables/sv-8g2d.ctb +73 -0
  445. data/vendor/liblouis/tables/sv-8g2n.ctb +73 -0
  446. data/vendor/liblouis/tables/sv-g0.utb +65 -0
  447. data/vendor/liblouis/tables/sv-g1.ctb +57 -0
  448. data/vendor/liblouis/tables/sv-g2.ctb +57 -0
  449. data/vendor/liblouis/tables/sv-phon.uti +241 -0
  450. data/vendor/liblouis/tables/sw-ke-g1-2.ctb +90 -0
  451. data/vendor/liblouis/tables/sw-ke-g1-3.ctb +109 -0
  452. data/vendor/liblouis/tables/sw-ke-g1-4.ctb +107 -0
  453. data/vendor/liblouis/tables/sw-ke-g1-5.ctb +73 -0
  454. data/vendor/liblouis/tables/sw-ke-g1.utb +278 -0
  455. data/vendor/liblouis/tables/sw-ke-g2.ctb +276 -0
  456. data/vendor/liblouis/tables/syc.utb +195 -0
  457. data/vendor/liblouis/tables/ta-ta-g1.ctb +167 -0
  458. data/vendor/liblouis/tables/ta.ctb +24 -0
  459. data/vendor/liblouis/tables/ta.tbl +21 -0
  460. data/vendor/liblouis/tables/tamil.cti +86 -0
  461. data/vendor/liblouis/tables/te-in-g1.utb +27 -0
  462. data/vendor/liblouis/tables/te.tbl +18 -0
  463. data/vendor/liblouis/tables/telugu.cti +239 -0
  464. data/vendor/liblouis/tables/text_nabcc.dis +426 -0
  465. data/vendor/liblouis/tables/th-comp8-backward.utb +226 -0
  466. data/vendor/liblouis/tables/th-g0.utb +177 -0
  467. data/vendor/liblouis/tables/th-g1.utb +89 -0
  468. data/vendor/liblouis/tables/th-g1.uti +315 -0
  469. data/vendor/liblouis/tables/th-g2.ctb +616 -0
  470. data/vendor/liblouis/tables/tr-g1.ctb +254 -0
  471. data/vendor/liblouis/tables/tr-g2.ctb +863 -0
  472. data/vendor/liblouis/tables/tr-g2.tbl +20 -0
  473. data/vendor/liblouis/tables/tr.ctb +324 -0
  474. data/vendor/liblouis/tables/tr.tbl +21 -0
  475. data/vendor/liblouis/tables/tsn-za-g1.ctb +33 -0
  476. data/vendor/liblouis/tables/tsn-za-g2.ctb +33 -0
  477. data/vendor/liblouis/tables/tt.utb +74 -0
  478. data/vendor/liblouis/tables/uga.utb +86 -0
  479. data/vendor/liblouis/tables/uk-comp.utb +53 -0
  480. data/vendor/liblouis/tables/uk-detailed.utb +32 -0
  481. data/vendor/liblouis/tables/uk.utb +101 -0
  482. data/vendor/liblouis/tables/ukchardefs.cti +106 -0
  483. data/vendor/liblouis/tables/ukmaths_single_cell_defs.cti +65 -0
  484. data/vendor/liblouis/tables/ukmaths_unicode_defs.cti +298 -0
  485. data/vendor/liblouis/tables/uni-text.dis +330 -0
  486. data/vendor/liblouis/tables/unicode-braille.utb +291 -0
  487. data/vendor/liblouis/tables/unicode-without-blank.dis +24 -0
  488. data/vendor/liblouis/tables/unicode.dis +278 -0
  489. data/vendor/liblouis/tables/ur-pk-g1.utb +248 -0
  490. data/vendor/liblouis/tables/ur-pk-g2.ctb +641 -0
  491. data/vendor/liblouis/tables/us-table.dis +67 -0
  492. data/vendor/liblouis/tables/uz-g1.utb +117 -0
  493. data/vendor/liblouis/tables/ve-za-g1.utb +69 -0
  494. data/vendor/liblouis/tables/ve-za-g2.ctb +208 -0
  495. data/vendor/liblouis/tables/vi-cb8.utb +49 -0
  496. data/vendor/liblouis/tables/vi-charsdef.uti +36 -0
  497. data/vendor/liblouis/tables/vi-lettersdef.uti +401 -0
  498. data/vendor/liblouis/tables/vi-puncsdef.uti +446 -0
  499. data/vendor/liblouis/tables/vi-saigon-g1.ctb +530 -0
  500. data/vendor/liblouis/tables/vi-vn-g0.utb +135 -0
  501. data/vendor/liblouis/tables/vi-vn-g1.ctb +574 -0
  502. data/vendor/liblouis/tables/vi-vn-g2.ctb +743 -0
  503. data/vendor/liblouis/tables/wiskunde-chardefs.cti +261 -0
  504. data/vendor/liblouis/tables/wordcx.dis +91 -0
  505. data/vendor/liblouis/tables/xh-za-g1.utb +61 -0
  506. data/vendor/liblouis/tables/xh-za-g2.ctb +386 -0
  507. data/vendor/liblouis/tables/yi.utb +236 -0
  508. data/vendor/liblouis/tables/zh-chn.ctb +45011 -0
  509. data/vendor/liblouis/tables/zh-hk.ctb +10461 -0
  510. data/vendor/liblouis/tables/zh-tw.ctb +53810 -0
  511. data/vendor/liblouis/tables/zh_CHN.tbl +23 -0
  512. data/vendor/liblouis/tables/zhcn-cbs.ctb +31523 -0
  513. data/vendor/liblouis/tables/zhcn-g1.ctb +26523 -0
  514. data/vendor/liblouis/tables/zhcn-g2.ctb +26519 -0
  515. data/vendor/liblouis/tables/zu-za-g1.utb +33 -0
  516. data/vendor/liblouis/tables/zu-za-g2.ctb +33 -0
  517. metadata +558 -0
@@ -0,0 +1,32 @@
1
+ #-index-name: Ukrainian, with capitals
2
+ #-display-name: Ukrainian braille with indication of capitals
3
+
4
+ #+language: uk
5
+ #+type: literary
6
+ #+dots: 6
7
+ #+contraction: no
8
+ #+direction: both
9
+ #+variant: detailed
10
+ #
11
+ # Copyright (C) 2024 Andrey Yakuboy <braille@yakuboy.ru>
12
+ #
13
+ # This file is part of liblouis.
14
+ #
15
+ # liblouis is free software: you can redistribute it and/or modify it
16
+ # under the terms of the GNU Lesser General Public License as
17
+ # published by the Free Software Foundation, either version 2.1 of the
18
+ # License, or (at your option) any later version.
19
+ #
20
+ # liblouis is distributed in the hope that it will be useful, but
21
+ # WITHOUT ANY WARRANTY; without even the implied warranty of
22
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
23
+ # Lesser General Public License for more details.
24
+ #
25
+ # You should have received a copy of the GNU Lesser General Public
26
+ # License along with liblouis. If not, see
27
+ # <http://www.gnu.org/licenses/>.
28
+
29
+ #-maintainer: Andrey Yakuboy
30
+
31
+ include uk.utb
32
+ include ru-litbrl-detailed.utb
@@ -0,0 +1,101 @@
1
+ #-index-name: Ukrainian
2
+ #-display-name: Ukrainian braille
3
+
4
+ #+language: uk
5
+ #+type: literary
6
+ #+direction: both
7
+
8
+ # -----------------
9
+ # TODO: Please add a reference to official documentation about
10
+ # the implemented braille code. Preferably submit the documents
11
+ # to https://github.com/liblouis/braille-specs.
12
+ # -----------------
13
+
14
+ #-copyright: Bert Frees
15
+ #-copyright: EAC "Lemur"
16
+ #-copyright: Andrey Yakuboy
17
+ #-license: LGPLv2.1
18
+
19
+ # Copyright (C) 2017 EAC "Lemur" <www.trosti.com.ua>
20
+ # Copyright (C) 2018 Bert Frees <bertfrees@gmail.com>
21
+ # Copyright (C) 2024 Andrey Yakuboy <braille@yakuboy.ru>
22
+ #
23
+ # This file is part of liblouis.
24
+ #
25
+ # liblouis is free software: you can redistribute it and/or modify it
26
+ # under the terms of the GNU Lesser General Public License as
27
+ # published by the Free Software Foundation, either version 2.1 of the
28
+ # License, or (at your option) any later version.
29
+ #
30
+ # liblouis is distributed in the hope that it will be useful, but
31
+ # WITHOUT ANY WARRANTY; without even the implied warranty of
32
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
33
+ # Lesser General Public License for more details.
34
+ #
35
+ # You should have received a copy of the GNU Lesser General Public
36
+ # License along with liblouis. If not, see
37
+ # <http://www.gnu.org/licenses/>.
38
+
39
+ # Maintained by Sergiy Moskalets.
40
+
41
+ #-maintainer: Sergiy Moskalets <www.trosti.com.ua>
42
+
43
+ # -----------------
44
+
45
+ # The Ukrainian alphabet has 4 letters that are not in the Russian
46
+ # alphabet, namely Є, І, Ї and Ґ.
47
+
48
+ lowercase \x0454 345 CYRILLIC LETTER IE є # conflicts with definition in# ru-litbrl.ctb
49
+ lowercase \x0456 13456 CYRILLIC LETTER I і # conflicts with definition in# ru-litbrl.ctb
50
+ lowercase \x0457 1456 CYRILLIC LETTER II ї # conflicts with definition in# ru-litbrl.ctb
51
+ lowercase \x0491 12456 CYRILLIC LETTER GE ґ
52
+
53
+ # base rule for Ґ (the base rules for Є, І and Ї are already in ru-litbrl.ctb)
54
+ base uppercase \x0490 \x0491 CYRILLIC LETTER GE Ґґ
55
+
56
+ # Add dot 9 to additional Cyrillic characters, as in ru-litbrl.ctb
57
+
58
+ noback always \x0454 3459
59
+ noback always \x0456 134569
60
+ noback always \x0457 14569
61
+ noback always \x0491 124569
62
+
63
+ noback always \x0404 3459
64
+ noback always \x0406 134569
65
+ noback always \x0407 14569
66
+ noback always \x0490 124569
67
+
68
+ # As the definition of the Ukrainian letter 'є' conflicts with parentheses, the definitions of parentheses should be changed
69
+ prepunc ( 2356
70
+ postpunc ) 2356
71
+
72
+ # Ukrainian braille is largely the same as Russian braille
73
+ include ru-litbrl.ctb
74
+
75
+ # Extend classes defined in ru-litbrl.ctb
76
+ attribute uppercyrillic \x0490
77
+ attribute lowercyrillic \x0491
78
+
79
+ # In spite of conflicts of letters and parentheses, in math text parentheses should be marked like in the Russian braille
80
+ # The correct opcode is used to avoid conflicts with rules in ru-litbrl.ctb
81
+ noback correct $m["("] "\x2823"#4=1 # \x2823 is the dots 126
82
+ noback correct ["("]$m "\x2823"#4=1
83
+ noback correct $d["("] "\x2823"#4=1
84
+ noback correct ["("]$d "\x2823"#4=1
85
+ noback correct #4=1[")"] "\x281c"#4=0 # \x281c is the dots 345
86
+ noback correct $m[")"] "\x281c"#4=0
87
+ noback correct [")"]$m "\x281c"#4=0
88
+ noback correct $d[")"] "\x281c"#4=0
89
+ noback correct [")"]$d "\x281c"#4=0
90
+
91
+ # Back translation of additional letters
92
+
93
+ nofor context #4=1@345 "\x0404"#4=0
94
+ nofor context #4=1@13456 "\x0406"#4=0
95
+ nofor context #4=1@1456 "\x0407"#4=0
96
+ nofor context #4=1@12456 "\x0490"#4=0
97
+
98
+ nofor context #4=2@345 "\x0404"
99
+ nofor context #4=2@13456 "\x0406"
100
+ nofor context #4=2@1456 "\x0407"
101
+ nofor context #4=2@12456 "\x0490"
@@ -0,0 +1,106 @@
1
+ # Attributes and dot patterns for the printable ASCII characters
2
+ #
3
+ # Copyright (C) 2008 JJB Software, Inc. www.jjb-software.com
4
+ # Copyright (C) 2012 Mesar Hameed <mesar.hameed@gmail.com>
5
+ #
6
+ # This file is part of liblouis.
7
+ #
8
+ # liblouis is free software: you can redistribute it and/or modify it
9
+ # under the terms of the GNU Lesser General Public License as
10
+ # published by the Free Software Foundation, either version 2.1 of the
11
+ # License, or (at your option) any later version.
12
+ #
13
+ # liblouis is distributed in the hope that it will be useful, but
14
+ # WITHOUT ANY WARRANTY; without even the implied warranty of
15
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16
+ # Lesser General Public License for more details.
17
+ #
18
+ # You should have received a copy of the GNU Lesser General Public
19
+ # License along with liblouis. If not, see
20
+ # <http://www.gnu.org/licenses/>.
21
+
22
+ # Attributes and dot patterns for the printable ASCII characters
23
+
24
+ space \x00a0 a
25
+ include spaces.uti
26
+
27
+ punctuation ! 2346 # 33
28
+ punctuation " 5 # 34
29
+ sign # 3456 # 35
30
+ sign $ 1246 # 36
31
+ sign % 146 # 37
32
+ sign & 12346 # 38
33
+ punctuation ' 3 # 39 apostrophe
34
+ punctuation ( 2356 # 40
35
+ punctuation ) 2356 # 41
36
+
37
+ sign * 16 # 42
38
+ math + 346 # 43
39
+ punctuation , 6 # 44
40
+ punctuation - 36 # 45
41
+ punctuation . 256 # 256
42
+ punctuation / 34 # 47
43
+ include loweredDigits6Dots.uti
44
+ punctuation : 156 # 58
45
+ punctuation ; 56 # 59
46
+ math < 126 # 60
47
+ math = 123456 # 61
48
+ math > 345 # 62
49
+ punctuation ? 1456 # 63
50
+ sign @ 2346 # 64
51
+
52
+ include latinLetterDef6Dots.uti
53
+
54
+ punctuation [ 2467 # 91
55
+ sign \\ 12567 # 92
56
+ punctuation ] 124567 # 93
57
+ sign ^ 457 # 94 circumflex accent
58
+ sign _ 456 # 95 underscore
59
+ sign ` 4 # 96 grave accent
60
+ # a - z # 97 - 122
61
+ punctuation { 246 # 123
62
+ sign | 1256 # 124
63
+ punctuation } 12456 # 125
64
+ math ~ 45 # 126
65
+
66
+ sign \x00A2 4-14 # 162 ¢ cents sign
67
+ sign \x00A3 4-123 # 163 £ pounds sign
68
+
69
+ sign \x00A5 4-13456 # 165 ¥ yen sign
70
+
71
+ sign § 4-234-3 # 167 section sign \x00A7
72
+
73
+ sign \x00A9 2356-6-14-2356 # 169 © copyright sign
74
+
75
+ punctuation \x00Ad 36-36 # 173 soft hyphen
76
+
77
+ sign \x00B0 356 # 176 ° degrees sign
78
+ sign \x00B4 3 # 180 ´ accute accent !!!! used for apostrophe override
79
+ sign \x00B5 46-134 # 181 µ micro sign
80
+ sign \x00B6 4-1234-345 # 182 ¶ pilcrow sign
81
+
82
+ sign \x00BC 3456-1-256 #Quarter
83
+ sign \x00BD 3456-1-23 #Half
84
+
85
+ math \x00D7 56-236 # 215 × multiplication sign
86
+
87
+ math \x00F7 56-256 # 247 ÷ division sign
88
+
89
+ punctuation \x2010 36-36 # 8208 hyphen
90
+ punctuation \x2013 36-36 # 8211 en dash
91
+ punctuation \x2014 36-36 # 8212 em dash
92
+ punctuation – 36-36 # 150 En dash
93
+
94
+
95
+ punctuation \x2018 6-236 # 8216 smart single left quotation mark
96
+ punctuation \x2019 356-3 # 8217 smart single right quotation mark
97
+
98
+ punctuation \x201C 236 # 8220 smart opening double quote
99
+ punctuation \x201D 356 # 8221 smart closing double quote
100
+ punctuation \x201E 236 # 8222 smart double low quotation mark
101
+ punctuation \x201F 356 # 8223 smart double high reverse quotation mark
102
+
103
+ punctuation \x2026 3-3-3 # 8230 smart ellipsis
104
+
105
+ sign \x20AC 4-15 # 8364 Euro sign
106
+
@@ -0,0 +1,65 @@
1
+ # Define all single-cell characters needed.
2
+ #
3
+ # Copyright (C) 2009 JJB Software, Inc. www.jjb-software.com
4
+ # Copyright (C) 2012 Mesar Hameed <mesar.hameed@gmail.com>
5
+ #
6
+ # This file is part of liblouis.
7
+ #
8
+ # liblouis is free software: you can redistribute it and/or modify it
9
+ # under the terms of the GNU Lesser General Public License as
10
+ # published by the Free Software Foundation, either version 2.1 of the
11
+ # License, or (at your option) any later version.
12
+ #
13
+ # liblouis is distributed in the hope that it will be useful, but
14
+ # WITHOUT ANY WARRANTY; without even the implied warranty of
15
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16
+ # Lesser General Public License for more details.
17
+ #
18
+ # You should have received a copy of the GNU Lesser General Public
19
+ # License along with liblouis. If not, see
20
+ # <http://www.gnu.org/licenses/>.
21
+
22
+ space \s 0
23
+ space \x000a 0
24
+ space \x000c 0
25
+ space \x000d 0
26
+ space \x001b 1b
27
+ space \x00a0 a
28
+ space \t 9
29
+ punctuation ! 5
30
+ punctuation " 4
31
+ sign # 3456
32
+ sign $ 46
33
+ sign % 123456
34
+ punctuation & 12346
35
+ punctuation ' 6
36
+ punctuation ( 236
37
+ punctuation ) 356
38
+ sign * 35
39
+ math + 235
40
+ punctuation , 2
41
+ punctuation - 36
42
+ punctuation . 3
43
+ math / 256
44
+ include digits6DotsPlusDot6.uti
45
+ punctuation : 25
46
+ punctuation ; 23
47
+ math < 56
48
+ math = 2356
49
+ math > 45
50
+ punctuation ? 26
51
+ punctuation @ 3457
52
+
53
+ include latinLetterDef8Dots.uti
54
+
55
+ punctuation [ 123567
56
+ punctuation \\ 347
57
+ punctuation ] 234567
58
+ math ^ 23467
59
+ punctuation _ 4567
60
+ sign ` 345
61
+ punctuation { 12356
62
+ sign | 34
63
+ punctuation } 23456
64
+ math ~ 2346
65
+ sign \x007f 456
@@ -0,0 +1,298 @@
1
+ # Unicode character definitions, usually multi-cell
2
+ #
3
+ # Copyright (C) 2009 JJB Software, Inc. www.jjb-software.com
4
+ #
5
+ # This file is part of liblouis.
6
+ #
7
+ # liblouis is free software: you can redistribute it and/or modify it
8
+ # under the terms of the GNU Lesser General Public License as
9
+ # published by the Free Software Foundation, either version 2.1 of the
10
+ # License, or (at your option) any later version.
11
+ #
12
+ # liblouis is distributed in the hope that it will be useful, but
13
+ # WITHOUT ANY WARRANTY; without even the implied warranty of
14
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15
+ # Lesser General Public License for more details.
16
+ #
17
+ # You should have received a copy of the GNU Lesser General Public
18
+ # License along with liblouis. If not, see
19
+ # <http://www.gnu.org/licenses/>.
20
+
21
+
22
+ lowercase \x2113 4-123 SCRIPT SMALL 006C
23
+ sign \x00B0 356 Degree
24
+ math \x00B1 a-56-235-36 PLUS-MINUS SIGN PLUS-OR-MINUS SIGN
25
+ math \x0391 456-1 GREEK CAPITAL LETTER ALPHA 03B1
26
+ math \x0392 456-12 GREEK CAPITAL LETTER BETA 03B2
27
+ math \x0393 456-1245 GREEK CAPITAL LETTER GAMMA 03B3
28
+ math \x0394 456-145 GREEK CAPITAL LETTER DELTA 03B4
29
+ math \x0395 456-15 GREEK CAPITAL LETTER EPSILON 03B5
30
+ math \x0396 456-156 GREEK CAPITAL LETTER ZETA 03B6
31
+ math \x0397 456-126 GREEK CAPITAL LETTER ETA 03B7
32
+ math \x0398 456-1456 GREEK CAPITAL LETTER THETA 03B8
33
+ math \x0399 456-24 GREEK CAPITAL LETTER IOTA 03B9
34
+ math \x039A 456-13 GREEK CAPITAL LETTER KAPPA 03BA
35
+ math \x039B 456-123 GREEK CAPITAL LETTER LAMDA
36
+ math \x039C 456-134 GREEK CAPITAL LETTER MU 03BC
37
+ math \x039D 456-1345 GREEK CAPITAL LETTER NU 03BD
38
+ math \x039E 456-1346 GREEK CAPITAL LETTER XI 03BE
39
+ math \x039F 456-135 GREEK CAPITAL LETTER OMICRON 03BF
40
+ math \x03A0 456-1234 GREEK CAPITAL LETTER PI 03C0
41
+ math \x03A1 456-1235 GREEK CAPITAL LETTER RHO 03C1
42
+ math \x03A3 456-234 GREEK CAPITAL LETTER SIGMA 03C3
43
+ math \x03A4 456-136 GREEK CAPITAL LETTER TAU 03C4
44
+ math \x03A5 456-136 GREEK CAPITAL LETTER UPSILON 03C5
45
+ math \x03A6 456-124 GREEK CAPITAL LETTER PHI 03C6
46
+ math \x03A7 456-12346 GREEK CAPITAL LETTER CHI 03C7
47
+ math \x03A8 456-1246 GREEK CAPITAL LETTER PSI 03C8
48
+ math \x03A9 456-2456 GREEK CAPITAL LETTER OMEGA 03C9
49
+ math \x03B1 46-1 GREEK SMALL LETTER ALPHA 0391 0391
50
+ math \x03B2 46-12 GREEK SMALL LETTER BETA 0392 0392
51
+ math \x03B3 46-1245 GREEK SMALL LETTER GAMMA 0393 0393
52
+ math \x03B4 46-145 GREEK SMALL LETTER DELTA 0394 0394
53
+ math \x03B5 46-15 GREEK SMALL LETTER EPSILON 0395 0395
54
+ math \x03B6 46-156 GREEK SMALL LETTER ZETA 0396 0396
55
+ math \x03B7 46-236 GREEK SMALL LETTER ETA 0397 0397
56
+ math \x03B8 46-1456 GREEK SMALL LETTER THETA 0398 0398
57
+ math \x03B9 46-24 GREEK SMALL LETTER IOTA 0399 0399
58
+ math \x03BA 46-13 GREEK SMALL LETTER KAPPA 039A 039A
59
+ math \x03BB 46-123 GREEK SMALL LETTER LAMDA GREEK
60
+ math \x03BC 46-134 GREEK SMALL LETTER MU 039C 039C
61
+ math \x03BD 46-1345 GREEK SMALL LETTER NU 039D 039D
62
+ math \x03BE 46-1346 GREEK SMALL LETTER XI 039E 039E
63
+ math \x03BF 46-135 GREEK SMALL LETTER OMICRON 039F 039F
64
+ math \x03C0 46-1234 GREEK SMALL LETTER PI 03A0 03A0
65
+ math \x03C1 46-1235 GREEK SMALL LETTER RHO 03A1 03A1
66
+ math \x03C2 46-25 GREEK SMALL LETTER FINAL SIGMA 03A3 03A3
67
+ math \x03C3 46-234 GREEK SMALL LETTER SIGMA 03A3 03A3
68
+ math \x03C4 46-2345 GREEK SMALL LETTER TAU 03A4 03A4
69
+ math \x03C5 46-136 GREEK SMALL LETTER UPSILON 03A5 03A5
70
+ math \x03C6 46-124 GREEK SMALL LETTER PHI 03A6 03A6
71
+ math \x03C7 46-12346 GREEK SMALL LETTER CHI 03A7 03A7
72
+ math \x03C8 46-125 GREEK SMALL LETTER PSI 03A8 03A8
73
+ math \x03C9 46-135 GREEK SMALL LETTER OMEGA 03A9 03A9
74
+ math \x03D5 46-124 GREEK PHI SYMBOL 03C6 GREEK SMALL LETTER SCRIPT PHI
75
+ math \x2026 a-3-3-3 HORIZONTAL ELLIPSIS 002E 002E 002E
76
+ math \x2032 4-35 PRIME
77
+ math \x2033 3-3 DOUBLE PRIME 2032 2032
78
+ math \x2114 1256 B BAR SYMBOL
79
+ math \x211D 4-6-1235 DOUBLE-STRUCK CAPITAL 0052 DOUBLE-STRUCK
80
+ math \x212B 45-1 ANGSTROM SIGN
81
+ math \x2190 a246-25 LEFTWARDS ARROW
82
+ math \x2191 a-25-24 UPWARDS ARROW
83
+ math \x2192 a-25-135 RIGHTWARDS ARROW
84
+ math \x2193 a-25-36 DOWNWARDS ARROW
85
+ math \x2194 a-246-25-135 LEFT RIGHT ARROW
86
+ math \x2195 a-1246-126-146-246-25-25-135 UP DOWN ARROW
87
+ math \x2196 a-1246-45-246-25-25 NORTH WEST ARROW
88
+ math \x2197 a-1246-45-25-25-135 NORTH EAST ARROW
89
+ math \x2198 a-1246-56-25-25-135 SOUTH EAST ARROW
90
+ math \x2199 a-1246-56-246-25-25 SOUTH WEST ARROW
91
+ math \x219A a-1256-4-1246-246-25-25-12456 LEFTWARDS ARROW WITH STROKE
92
+ math \x219B a-1256-4-1246-25-25-135-12456 RIGHTWARDS ARROW WITH STROKE
93
+ math \x219C a-1246-246-35-25-26 LEFTWARDS WAVE ARROW
94
+ math \x219D a-1246-35-25-26-135 RIGHTWARDS WAVE ARROW
95
+ math \x219E a-1246-246-246-25-25 LEFTWARDS TWO HEADED ARROW
96
+ math \x219F a-1246-126-25-25-135-135 UPWARDS TWO HEADED ARROW
97
+ math \x21A0 a-1246-25-25-135-135 RIGHTWARDS TWO HEADED ARROW
98
+ math \x21A1 a-1246-146-25-25-135-135 DOWNWARDS TWO HEADED ARROW
99
+ math \x21A2 a-1246-246-25-25-6-13456 LEFTWARDS ARROW WITH TAIL
100
+ math \x21A3 a-12456-12346-25-25-135 RIGHTWARDS ARROW WITH TAIL
101
+ math \x21A4 a-1246-246-25-25-1256 LEFTWARDS ARROW FROM BAR
102
+ math \x21A5 a-1246-126-1256-25-25-135 UPWARDS ARROW FROM BAR
103
+ math \x21A6 a-1246-1256-25-25-135 RIGHTWARDS ARROW FROM BAR
104
+ math \x21A7 a-1246-146-1256-25-25-135 DOWNWARDS ARROW FROM BAR
105
+ math \x21A8 a-1246-246-25-1256-25-135 UP DOWN ARROW WITH BASE
106
+ math \x21A9 a-1246-246-25-25-6-135 LEFTWARDS ARROW WITH HOOK
107
+ math \x21AA a-12456-246-25-25-135 RIGHTWARDS ARROW WITH HOOK
108
+ math \x21AB a-1246-246-25-25-46-16 LEFTWARDS ARROW WITH LOOP
109
+ math \x21AC a-1246-46-16-25-25-135 RIGHTWARDS ARROW WITH LOOP
110
+ math \x21AD a-1246-246-35-25-26-135 LEFT RIGHT WAVE ARROW
111
+ math \x21AE a-1256-4-1246-246-25-25-135 LEFT RIGHT ARROW WITH STROKE
112
+ math \x21AF a-1246-146-35-26-35-1359 DOWNWARDS ZIGZAG ARROW
113
+ math \x21B4 a-12456-1256-25-25-135 RIGHTWARDS ARROW WITH CORNER DOWNWARDS
114
+ math \x21B5 a-1246-1456-1256-25-25-135 DOWNWARDS ARROW WITH CORNER LEFTWARDS
115
+ math \x21B6 a-1246-26-35-135 ANTICLOCKWISE TOP SEMICIRCLE ARROW
116
+ math \x21B7 a-1246-246-26-35 CLOCKWISE TOP SEMICIRCLE ARROW
117
+ math \x21BA a-1246-26-35-135 ANTICLOCKWISE OPEN CIRCLE ARROW
118
+ math \x21BB a-1246-246-26-35 CLOCKWISE OPEN CIRCLE ARROW
119
+ math \x21BC a-1246-4-246-25-25 LEFTWARDS HARPOON WITH BARB UPWARDS
120
+ math \x21BD a-12456-246-25-25 LEFTWARDS HARPOON WITH BARB DOWNWARDS
121
+ math \x21BE a-1246-126-25-25-6-135 UPWARDS HARPOON WITH BARB RIGHTWARDS
122
+ math \x21BF a-1246-126-25-25-4-135 UPWARDS HARPOON WITH BARB LEFTWARDS
123
+ math \x21C0 a-1246-25-25-4-135 RIGHTWARDS HARPOON WITH BARB UPWARDS
124
+ math \x21C1 a-1246-25-25-6-135 RIGHTWARDS HARPOON WITH BARB DOWNWARS
125
+ math \x21C2 a-1246-246-25-25-4-135 DOWNWARDS HARPOON WITH BARB RIGHTWARDS
126
+ math \x21C3 a-1246-146-25-25-6-135 DOWNWARDS HARPOON WITH BARB LEFTWARDS
127
+ math \x21C4 1246-25-25-135-1246-246-25-25 RIGHTWARDS ARROW OVER LEFTWARDS ARROW
128
+ math \x21C5 1246-126-25-25-135-5-1246-146-25-25-135 UPWARDS ARROW LEFTWARDS OF DOWNWARDS ARROW
129
+ math \x21C6 1246-246-25-25-1246-25-25-135 LEFTWARDS ARROW OVER RIGHTWARDS ARROW
130
+ math \x21C7 1246-245-25-25-1246-245-25-25 LEFTWARDS PAIRED ARROWS
131
+ math \x21C8 1246-126-25-25-135-5-1246-126-25-25-135 UPWARDS PAIRED ARROWS
132
+ math \x21C9 1246-25-25-135-1246-25-25-135 RIGHTWARDS PAIRED ARROWS
133
+ math \x21CA 1246-146-25-25-135-5-1246-146-25-25-135 DOWNWARDS PAIRED ARROWS
134
+ math \x21CB 1246-4-246-25-25-1246-25-25-4-135 LEFTWARDS HARPOON OVER RIGHTWARDS HARPOON
135
+ math \x21CC 1246-25-25-4-135-1246-4-246-25-25 RIGHTWARDS HARPOON OVER LEFTWARDS HARPOON
136
+ math \x21CD a-1256-4-1246-246-246-25-25 LEFTWARDS DOUBLE ARROW WITH STROKE
137
+ math \x21CE a-1256-4-1246-246-246-25-25-135-135 LEFT RIGHT DOUBLE ARROW WITH STROKE
138
+ math \x21CF a-1256-4-1246-25-25-135-135 RIGHTWARDS DOUBLE ARROW WITH STROKE
139
+ math \x21D0 a-246-246-25 LEFTWARDS DOUBLE ARROW
140
+ math \x21D1 a-1246-126-25-25-135-135 UPWARDS DOUBLE ARROW
141
+ math \x21D2 a-25-135-135 RIGHTWARDS DOUBLE ARROW
142
+ math \x21D3 a-1246-126-25-25-135-135 DOWNWARDS DOUBLE ARROW
143
+ math \x21D4 a-1246-246-246-25-25-135-135 LEFT RIGHT DOUBLE ARROW
144
+ math \x21D5 a-1246-126-246-246-25-25-135-135 UP DOWN DOUBLE ARROW
145
+ math \x21D6 a-1246-45-246-246-25-25 NORTH WEST DOUBLE ARROW
146
+ math \x21D7 a-1246-45-25-25-135-135 NORTH EAST DOUBLE ARROW
147
+ math \x21D8 a-1246-56-25-25-135-135 SOUTH EAST DOUBLE ARROW
148
+ math \x21D9 a-1246-56-246-246-25-25 SOUTH WEST DOUBLE ARROW
149
+ math \x21DA a-1246-246-246-246-25-25 LEFTWARDS TRIPLE ARROW
150
+ math \x21DB a-1246-25-25-135-135-135 RIGHTWARDS TRIPLE ARROW
151
+ math \x21DC a-1246-246-26-36-35-25-26 LEFTWARDS SQUIGGLE ARROW
152
+ math \x21DD a-1246-26-36-35-25-26-135 RIGHTWARDS SQUIGGLE ARROW
153
+ math \x21DE a-1256-1256-4-1246-126-25-25-135-12456 UPWARDS ARROW WITH DOUBLE STROKE
154
+ math \x21DF a-1256-1256-4-1246-146-25-25-135-12456 DOWNWARDS ARROW WITH DOUBLE STROKE
155
+ math \x21E0 a-1246-246-25-25 LEFTWARDS DASHED ARROW
156
+ math \x21E1 a-1246-126-25-25-135 UPWARDS DASHED ARROW
157
+ math \x21E2 a-1246-25-25-135 RIGHTWARDS DASHED ARROW
158
+ math \x21E3 a-1246-146-25-25-135 DOWNWARDS DASHED ARROW
159
+ math \x21E4 a-1246-1256-246-25-25 LEFTWARDS ARROW TO BAR
160
+ math \x21E5 a-1246-25-25-135-1256 RIGHTWARDS ARROW TO BAR
161
+ math \x21E6 a-1246-456-246-25-25 LEFTWARDS WHITE ARROW
162
+ math \x21E7 a-1246-126-456-25-25-135 UPWARDS WHITE ARROW
163
+ math \x21E8 a-1246-456-25-25-135 RIGHTWARDS WHITE ARROW
164
+ math \x21E9 a-1246-146-456-25-25-135 DOWNWARDS WHITE ARROW
165
+ math \x21F3 a-1246-126-456-246-25-25-135 UP DOWN WHITE ARROW
166
+ math \x21F4 a-1246-25-25-135-46-16 RIGHT ARROW WITH SMALL CIRCLE
167
+ math \x21F5 a-1246-146-25-25-135-5-1246-126-25-25-135 DOWNWARDS ARROW LEFTWARDS OF UPWARDS ARROW
168
+ math \x21F6 a-1246-25-25-135-1246-25-25-135-1246-25-25-135 THREE RIGHTWARDS ARROWS
169
+ math \x21F7 a-1256-4-1246-246-25-25-12456 LEFTWARDS ARROW WITH VERTICAL STROKE
170
+ math \x21F8 a-1256-4-1246-25-25-135-12456 RIGHTWARDS ARROW WITH VERTICAL STROKE
171
+ math \x21F9 a-1256-4-1246-246-25-25-135 LEFT RIGHT ARROW WITH VERTICAL STROKE
172
+ math \x21FA a-1256-1256-4-1246-246-25-25-12456 LEFTWARDS ARROW WITH DOUBLE VERTICAL STROKE
173
+ math \x21FB a-1256-1256-4-1246-25-25-135-12456 RIGHTWARDS ARROW WITH DOUBLE VERTICAL STROKE
174
+ math \x21FC a-1256-1256-4-1246-246-25-25-135 LEFT RIGHT ARROW WITH DOUBLE VERTICAL STROKE
175
+ math \x21FD a-1246-1256-25-25 LEFTWARDS OPEN-HEADED ARROW
176
+ math \x21FE a-1246-25-25-1256 RIGHTWARDS OPEN-HEADED ARROW
177
+ math \x21FF a-1246-1256-25-25-1256 LEFT RIGHT OPEN-HEADED ARROW
178
+ math \x2200 1256-2 FOR ALL
179
+ math \x2202 4-145 PARTIAL DIFFERENTIAL
180
+ math \x2203 1256-26 THERE EXISTS
181
+ math \x2204 34-4-123456 THERE DOES NOT EXIST
182
+ math \x2205 1256-356 EMPTY SET
183
+ math \x2207 456-356 NABLA
184
+ math \x2208 1256-35 ELEMENT OF
185
+ math \x2209 34-4-15 NOT AN ELEMENT OF
186
+ math \x220B 1256-135 CONTAINS AS MEMBER
187
+ math \x220C 35-1256-135 DOES NOT CONTAIN AS MEMBER
188
+ math \x220D 4-26 SMALL CONTAINS AS MEMBER
189
+ math \x220E a-123456-123456 END OF PROOF
190
+ math \x2211 456-234 NRY SUMMATION
191
+ math \x2212 a-56-36 MINUS SIGN
192
+ math \x2217 4-3456 ASTERISK OPERATOR
193
+ math \x2218 356 degrees sign
194
+ math \x221D a-25-2356 PROPORTIONAL TO
195
+ math \x221E 123456 INFINITY
196
+ math \x221F 1246-246-46-1235-12456 RIGHT ANGLE
197
+ math \x2220 1456-246 ANGLE
198
+ math \x2221 1246-246-456-1246-1246-1-12456 MEASURED ANGLE
199
+ math \x2222 1246-246-456-1246-1246-1-12456 Spherical ANGLE
200
+ math \x2223 1256 DIVIDES
201
+ math \x2224 34-1256 DOES NOT DIVIDE
202
+ math \x2225 a-1246-123 PARALLEL TO
203
+ math \x2226 a-34-1246-123 NOT PARALLEL TO
204
+ math \x2229 1256-2356 INTERSECTION
205
+ math \x222A 1256-235 UNION
206
+ math \x222B 2346 INTEGRAL
207
+ math \x222C 2346-2346 DOUBLE INTEGRAL
208
+ math \x222D 2346-2346-2346 TRIPLE INTEGRAL
209
+ math \x222E 2346-4-1246-14-12456 CONTOUR INTEGRAL
210
+ math \x2232 2346-4-1246-246-26-35-12456 CLOCKWISE CONTOUR INTEGRAL
211
+ math \x2233 2346-4-1246-26-35-135-12456 ANTICLOCKWISE CONTOUR INTEGRAL
212
+ math \x2234 a-6-16 THEREFORE
213
+ math \x2235 a-4-34 BECAUSE
214
+ math \x2236 a-5-2 RATIO
215
+ math \x2245 a-456-2356 APPROXIMATELY EQUAL TO
216
+ math \x224D a-2356-2356 EQUIVALENT TO
217
+ math \x2260 a-35-2356 NOT EQUAL TO
218
+ math \x2261 a-456-123 IDENTICAL TO
219
+ math \x2264 a-246-2356 LESS-THAN OR EQUAL TO
220
+ math \x2265 a-135-2356 GREATER-THAN OR EQUAL TO GREATER THAN OR EQUAL TO
221
+ math \x2266 a-246-456-2356 LESS-THAN OVER EQUAL TO
222
+ math \x2267 a-46-2-46-13 GREATER-THAN OVER EQUAL TO
223
+ math \x2268 a-246-35-2356 LESS-THAN BUT NOT EQUAL TO
224
+ math \x2269 a-135-35-2356 GREATER-THAN BUT NOT EQUAL TO
225
+ math \x226A a-246-246 MUCH LESS-THAN
226
+ math \x226B a-135-135 MUCH GREATER-THAN
227
+ math \x226D a-35-2356-2356 NOT EQUIVALENT TO
228
+ math \x226E a-35-246 NOT LESS-THAN
229
+ math \x226F a-35-135 NOT GREATER-THAN
230
+ math \x2270 a-34-5-13-156 NEITHER LESS-THAN NOR EQUAL TO
231
+ math \x2271 a-34-46-2-156 NEITHER GREATER-THAN NOR EQUAL TO
232
+ math \x2272 a-246-2356-2356 LESS-THAN OR EQUIVALENT TO
233
+ math \x2273 a-135-2356-2356 GREATER-THAN OR EQUIVALENT TO
234
+ math \x2274 a-34-5-13-456-123 NEITHER LESS-THAN NOR EQUIVALENT TO
235
+ math \x2275 a-34-46-2-456-123 NEITHER GREATER-THAN NOR EQUIVALENT TO
236
+ math \x2276 a-5-13-46-2 LESS-THAN OR GREATER-THAN
237
+ math \x2277 a-46-2-5-13 GREATER-THAN OR LESS-THAN
238
+ math \x2278 a-34-5-13-46-2 NEITHER LESS-THAN NOR GREATER-THAN
239
+ math \x2279 a-34-46-2-5-13 NEITHER GREATER-THAN NOR LESS-THAN
240
+ math \x2282 456-5-13 SUBSET OF
241
+ math \x2283 456-46-2 SUPERSET OF
242
+ math \x2284 34-456-5-13 NOT A SUBSET OF
243
+ math \x2285 34-456-46-2 NOT A SUPERSET OF
244
+ math \x2286 456-5-13-156 SUBSET OF OR EQUAL TO
245
+ math \x2287 46-2-156 SUPERSET OF OR EQUAL TO
246
+ math \x2288 34-5-13-156 NEITHER A SUBSET OF NOR EQUAL TO
247
+ math \x2289 34-46-2-156 NEITHER A SUPERSET OF NOR EQUAL TO
248
+ math \x228A 456-5-13-34-46-13 SUBSET OF WITH NOT EQUAL TO
249
+ math \x228B 456-46-2-34-46-13 SUPERSET OF WITH NOT EQUAL TO
250
+ math \x2295 1246-14-456-1246-346-12456 CIRCLED PLUS
251
+ math \x2296 1246-14-456-1246-36-12456 CIRCLED MINUS
252
+ math \x2297 1246-14-456-1246-4-16-12456 CIRCLED TIMES
253
+ math \x2298 1246-14-456-1246-456-34-12456 CIRCLED DIVISION SLASH
254
+ math \x2299 1246-14-456-1246-16-12456 CIRCLED DOT OPERATOR
255
+ math \x229B 1246-14-456-1246-4-3456-12456 CIRCLED ASTERISK OPERATOR
256
+ math \x229C 1246-14-456-1246-46-13-12456 CIRCLED EQUALS
257
+ math \x229D 1246-14-456-1246-36-36-12456 CIRCLED DASH
258
+ math \x229E 1246-256-456-1246-346-12456 SQUARED PLUS
259
+ math \x229F 1246-256-456-1246-36-12456 SQUARED MINUS
260
+ math \x22A0 1246-256-456-1246-4-16-12456 SQUARED TIMES
261
+ math \x22A1 1246-256-456-1246-16-12456 SQUARED DOT OPERATOR
262
+ math \x22A5 a-3456-3 Perpendicular TO
263
+ math \x22A5 a-34-1246-1234 not Perpendicular TO
264
+ math \x22C5 56-3 dot operator
265
+ math \x22DC a-2356-246 EQUAL TO OR LESS-THAN
266
+ math \x22DD a-2356-135 EQUAL TO OR GREATER-THAN
267
+ math \x22EE 126-3-3-3 VERTICAL ELLIPSIS
268
+ math \x22EF 3-3-3 MIDLINE HORIZONTAL ELLIPSIS
269
+ math \x22F0 45-3-3-3 UP RIGHT DIAGONAL ELLIPSIS
270
+ math \x22F1 56-3-3-3 DOWN RIGHT DIAGONAL ELLIPSIS
271
+ math \x2322 a-1246-1 arc
272
+ math \x25A0 1246-456-12345 filled Square
273
+ math \x25A1 1246-12345 Square
274
+ math \x25AB 1246-456-1235 filled Rectangle
275
+ math \x25AC 1246-1235 Rectangle
276
+ math \x25B0 1246-456-1245 filled PARALLELOGRAM
277
+ math \x25B1 1246-1245 PARALLELOGRAM
278
+ math \x25B2 1246-456-145 Filled Triangle
279
+ math \x25B3 1246-145 Triangle
280
+ math \x25BC 456-46-1246 BLACK DOWN-POINTING TRIANGLE
281
+ math \x25BD 46-1246 WHITE DOWN-POINTING TRIANGLE
282
+ math \x25CF 1246-456-14 Filled Circle
283
+ math \x25CB 1246-25 Circle
284
+ math \xf577 1246-135 contracted right arrow
285
+ sign * 4-3456 ASTERISK OPERATOR
286
+ sign \x009A a SINGLE CHARACTER INTRODUCER
287
+ sign \x00A2 4-14 CENT SIGN
288
+ sign \x00A7 4-6-234 SECTION SIGN
289
+ sign \x00A9 12356-6-14-23456 COPYRIGHT SIGN
290
+ sign \x00B7 16 MIDDLE DOT
291
+ sign \x00D7 a-56-236 MULTIPLICATION SIGN
292
+ sign \x00F7 a-56-256 DIVISION SIGN
293
+ sign \x2022 35-35 BULLET
294
+ sign \x2215 456-34 DIVISION slash
295
+ sign \x2715 a-56-236 MULTIPLICATION SIGN
296
+ space \x2009 0 THIN SPACE 0020
297
+ space \x2061 0 FUNCTION APPLICATION
298
+