]> code.delx.au - gnu-emacs/blob - leim/quail/latin-alt.el
*** empty log message ***
[gnu-emacs] / leim / quail / latin-alt.el
1 ;;; latin-alt.el --- Quail package for inputting various European characters -*-coding: utf-8;-*-
2
3 ;; Copyright (C) 1997, 1998, 2001, 2002, 2003, 2004, 2005, 2006, 2007
4 ;; Free Software Foundation, Inc.
5 ;; Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007
6 ;; National Institute of Advanced Industrial Science and Technology (AIST)
7 ;; Registration Number H14PRO021
8
9 ;; Keywords: multilingual, input method, latin
10
11 ;; This file is part of GNU Emacs.
12
13 ;; GNU Emacs is free software; you can redistribute it and/or modify
14 ;; it under the terms of the GNU General Public License as published by
15 ;; the Free Software Foundation; either version 3, or (at your option)
16 ;; any later version.
17
18 ;; GNU Emacs is distributed in the hope that it will be useful,
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 ;; GNU General Public License for more details.
22
23 ;; You should have received a copy of the GNU General Public License
24 ;; along with GNU Emacs; see the file COPYING. If not, write to the
25 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
26 ;; Boston, MA 02110-1301, USA.
27
28 ;; Author (of latin-post.el): TAKAHASHI Naoto <ntakahas@etl.go.jp>
29
30 ;;; Commentary:
31
32 ;; These input methods differ from those in latin-post.el
33 ;; in that comma is not special (use / instead),
34 ;; and // is not special either (so you can enter a slash
35 ;; by typing //).
36
37 ;; At least, that's what I could see by comparing the first few
38 ;; of these with latin-post.el.
39
40 ;;; Code:
41
42 (require 'quail)
43
44 (quail-define-package
45 "latin-1-alt-postfix" "Latin-1" "1<" t
46 "Latin-1 character input method with postfix modifiers
47 This input method differs from `latin-1-postfix' in that
48 comma is not special (use slash instead), and `//' is not
49 special (so you can use that to enter a slash).
50
51 | postfix | examples
52 ------------+---------+----------
53 acute | ' | a' -> á
54 grave | ` | a` -> à
55 circumflex | ^ | a^ -> â
56 diaeresis | \" | a\" -> ä
57 tilde | ~ | a~ -> ã
58 cedilla | / | c/ -> ç
59 nordic | / | d/ -> ð t/ -> þ a/ -> å e/ -> æ o/ -> ø
60 others | /<> | s/ -> ß ?/ -> ¿ !/ -> ¡
61 | various | << -> « >> -> » o_ -> º a_ -> ª
62
63 It seems natural to use comma for cedillas, but that is
64 inconvenient in practice because commas are needed very
65 often after a letter.
66
67 Doubling the postfix separates the letter and postfix: e.g. a'' -> a'
68 " nil t nil nil nil nil nil nil nil nil t)
69
70 (quail-define-rules
71 ("A`" ?À)
72 ("A'" ?Á)
73 ("A^" ?Â)
74 ("A~" ?Ã)
75 ("A\"" ?Ä)
76 ("A/" ?Å)
77 ("a`" ?à)
78 ("a'" ?á)
79 ("a^" ?â)
80 ("a~" ?ã)
81 ("a\"" ?ä)
82 ("a/" ?å)
83 ("E`" ?È)
84 ("E'" ?É)
85 ("E^" ?Ê)
86 ("E\"" ?Ë)
87 ("E/" ?Æ)
88 ("e`" ?è)
89 ("e'" ?é)
90 ("e^" ?ê)
91 ("e\"" ?ë)
92 ("e/" ?æ)
93 ("I`" ?Ì)
94 ("i`" ?ì)
95 ("I'" ?Í)
96 ("i'" ?í)
97 ("I^" ?Î)
98 ("i^" ?î)
99 ("I\"" ?Ï)
100 ("i\"" ?ï)
101 ("O`" ?Ò)
102 ("o`" ?ò)
103 ("O'" ?Ó)
104 ("o'" ?ó)
105 ("O^" ?Ô)
106 ("o^" ?ô)
107 ("O~" ?Õ)
108 ("o~" ?õ)
109 ("O\"" ?Ö)
110 ("o\"" ?ö)
111 ("O/" ?Ø)
112 ("o/" ?ø)
113 ("U`" ?Ù)
114 ("u`" ?ù)
115 ("U'" ?Ú)
116 ("u'" ?ú)
117 ("U^" ?Û)
118 ("u^" ?û)
119 ("U\"" ?Ü)
120 ("u\"" ?ü)
121 ("Y'" ?Ý)
122 ("y'" ?ý)
123 ("y\"" ?ÿ)
124 ("D/" ?Ð)
125 ("d/" ?ð)
126 ("T/" ?Þ)
127 ("t/" ?þ)
128 ("s/" ?ß)
129 ("C/" ?Ç)
130 ("c/" ?ç)
131 ("N~" ?Ñ)
132 ("n~" ?ñ)
133 ("?/" ?¿)
134 ("!/" ?¡)
135 ("<<" ?«)
136 (">>" ?»)
137 ("o_" ?º)
138 ("a_" ?ª)
139
140 ("A``" ["A`"])
141 ("A''" ["A'"])
142 ("A^^" ["A^"])
143 ("A~~" ["A~"])
144 ("A\"\"" ["A\""])
145 ("A//" ["A/"])
146 ("a``" ["a`"])
147 ("a''" ["a'"])
148 ("a^^" ["a^"])
149 ("a~~" ["a~"])
150 ("a\"\"" ["a\""])
151 ("a//" ["a/"])
152 ("E``" ["E`"])
153 ("E''" ["E'"])
154 ("E^^" ["E^"])
155 ("E\"\"" ["E\""])
156 ("E//" ["E/"])
157 ("e``" ["e`"])
158 ("e''" ["e'"])
159 ("e^^" ["e^"])
160 ("e\"\"" ["e\""])
161 ("e//" ["e/"])
162 ("I``" ["I`"])
163 ("i``" ["i`"])
164 ("I''" ["I'"])
165 ("i''" ["i'"])
166 ("I^^" ["I^"])
167 ("i^^" ["i^"])
168 ("I\"\"" ["I\""])
169 ("i\"\"" ["i\""])
170 ("O``" ["O`"])
171 ("o``" ["o`"])
172 ("O''" ["O'"])
173 ("o''" ["o'"])
174 ("O^^" ["O^"])
175 ("o^^" ["o^"])
176 ("O~~" ["O~"])
177 ("o~~" ["o~"])
178 ("O\"\"" ["O\""])
179 ("o\"\"" ["o\""])
180 ("O//" ["O/"])
181 ("o//" ["o/"])
182 ("U``" ["U`"])
183 ("u``" ["u`"])
184 ("U''" ["U'"])
185 ("u''" ["u'"])
186 ("U^^" ["U^"])
187 ("u^^" ["u^"])
188 ("U\"\"" ["U\""])
189 ("u\"\"" ["u\""])
190 ("Y''" ["Y'"])
191 ("y''" ["y'"])
192 ("y\"\"" ["y\""])
193 ("D//" ["D/"])
194 ("d//" ["d/"])
195 ("T//" ["T/"])
196 ("t//" ["t/"])
197 ("s//" ["s/"])
198 ("C//" ["C/"])
199 ("c//" ["c/"])
200 ("N~~" ["N~"])
201 ("n~~" ["n~"])
202 ("?//" ["?/"])
203 ("!//" ["!/"])
204 ("<<<" ["<<"])
205 (">>>" [">>"])
206 ("o__" ["o_"])
207 ("a__" ["a_"])
208 )
209
210 (quail-define-package
211 "latin-2-alt-postfix" "Latin-2" "2<" t
212 "Latin-2 character input method with postfix modifiers
213 This input method differs from `latin-2-postfix' in that
214 comma and period are not special (use ` instead).
215
216 | postfix | examples
217 ------------+---------+----------
218 acute | ' | a' -> á
219 ogonek | ` | a` -> ą
220 diaeresis | \" | a\" -> ä
221 circumflex | ^ | a^ -> â
222 breve | ~ | a~ -> ă
223 cedilla | ` | c` -> ç
224 caron | ~ | c~ -> č
225 dbl. acute | : | o: -> ő
226 ring | ` | u` -> ů
227 dot | ` | z` -> ż
228 stroke | / | d/ -> đ
229 others | / | s/ -> ß
230
231 It seems natural to use period and comma for dots/rings and
232 cedillas/ogoneks, but that is inconvenient in practice, because
233 periods and commas are needed very often after a letter.
234
235 Doubling the postfix separates the letter and postfix: e.g. a'' -> a'
236 " nil t nil nil nil nil nil nil nil nil t)
237
238 (quail-define-rules
239 ("A'" ?Á)
240 ("A`" ?Ą)
241 ("A\"" ?Ä)
242 ("A^" ?Â)
243 ("A~" ?Ă)
244 ("C'" ?Ć)
245 ("C`" ?Ç)
246 ("C~" ?Č)
247 ("D/" ?Đ)
248 ("D~" ?Ď)
249 ("E'" ?É)
250 ("E`" ?Ę)
251 ("E\"" ?Ë)
252 ("E~" ?Ě)
253 ("I'" ?Í)
254 ("I^" ?Î)
255 ("L'" ?Ĺ)
256 ("L/" ?Ł)
257 ("L~" ?Ľ)
258 ("N'" ?Ń)
259 ("N~" ?Ň)
260 ("O'" ?Ó)
261 ("O:" ?Ő)
262 ("O\"" ?Ö)
263 ("O^" ?Ô)
264 ("R'" ?Ŕ)
265 ("R~" ?Ř)
266 ("S'" ?Ś)
267 ("S`" ?Ş)
268 ("S~" ?Š)
269 ("T`" ?Ţ)
270 ("T~" ?Ť)
271 ("U'" ?Ú)
272 ("U:" ?Ű)
273 ("U\"" ?Ü)
274 ("U`" ?Ů)
275 ("Y'" ?Ý)
276 ("Z'" ?Ź)
277 ("Z`" ?Ż)
278 ("Z~" ?Ž)
279 ("a'" ?á)
280 ("a`" ?ą)
281 ("a\"" ?ä)
282 ("a^" ?â)
283 ("a~" ?ă)
284 ("c'" ?ć)
285 ("c`" ?ç)
286 ("c~" ?č)
287 ("d/" ?đ)
288 ("d~" ?ď)
289 ("e'" ?é)
290 ("e`" ?ę)
291 ("e\"" ?ë)
292 ("e~" ?ě)
293 ("i'" ?í)
294 ("i^" ?î)
295 ("l'" ?ĺ)
296 ("l/" ?ł)
297 ("l~" ?ľ)
298 ("n'" ?ń)
299 ("n~" ?ň)
300 ("o'" ?ó)
301 ("o:" ?ő)
302 ("o\"" ?ö)
303 ("o^" ?ô)
304 ("r'" ?ŕ)
305 ("r~" ?ř)
306 ("s'" ?ś)
307 ("s`" ?ş)
308 ("s/" ?ß)
309 ("s~" ?š)
310 ("t`" ?ţ)
311 ("t~" ?ť)
312 ("u'" ?ú)
313 ("u:" ?ű)
314 ("u\"" ?ü)
315 ("u`" ?ů)
316 ("y'" ?ý)
317 ("z'" ?ź)
318 ("z`" ?ż)
319 ("z~" ?ž)
320
321 ("A''" ["A'"])
322 ("A``" ["A`"])
323 ("A\"\"" ["A\""])
324 ("A^^" ["A^"])
325 ("A~~" ["A~"])
326 ("C''" ["C'"])
327 ("C``" ["C`"])
328 ("C~~" ["C~"])
329 ("D//" ["D/"])
330 ("D~~" ["D~"])
331 ("E''" ["E'"])
332 ("E``" ["E`"])
333 ("E\"\"" ["E\""])
334 ("E~~" ["E~"])
335 ("I''" ["I'"])
336 ("I^^" ["I^"])
337 ("L''" ["L'"])
338 ("L//" ["L/"])
339 ("L~~" ["L~"])
340 ("N''" ["N'"])
341 ("N~~" ["N~"])
342 ("O''" ["O'"])
343 ("O::" ["O:"])
344 ("O\"\"" ["O\""])
345 ("O^^" ["O^"])
346 ("R''" ["R'"])
347 ("R~~" ["R~"])
348 ("S''" ["S'"])
349 ("S``" ["S`"])
350 ("S~~" ["S~"])
351 ("T``" ["T`"])
352 ("T~~" ["T~"])
353 ("U''" ["U'"])
354 ("U::" ["U:"])
355 ("U\"\"" ["U\""])
356 ("U``" ["U`"])
357 ("Y''" ["Y'"])
358 ("Z''" ["Z'"])
359 ("Z``" ["Z`"])
360 ("Z~~" ["Z~"])
361 ("a''" ["a'"])
362 ("a``" ["a`"])
363 ("a\"\"" ["a\""])
364 ("a^^" ["a^"])
365 ("a~~" ["a~"])
366 ("c''" ["c'"])
367 ("c``" ["c`"])
368 ("c~~" ["c~"])
369 ("d//" ["d/"])
370 ("d~~" ["d~"])
371 ("e''" ["e'"])
372 ("e``" ["e`"])
373 ("e\"\"" ["e\""])
374 ("e~~" ["e~"])
375 ("i''" ["i'"])
376 ("i^^" ["i^"])
377 ("l''" ["l'"])
378 ("l//" ["l/"])
379 ("l~~" ["l~"])
380 ("n''" ["n'"])
381 ("n~~" ["n~"])
382 ("o''" ["o'"])
383 ("o::" ["o:"])
384 ("o\"\"" ["o\""])
385 ("o^^" ["o^"])
386 ("r''" ["r'"])
387 ("r~~" ["r~"])
388 ("s''" ["s'"])
389 ("s``" ["s`"])
390 ("s//" ["s/"])
391 ("s~~" ["s~"])
392 ("t``" ["t`"])
393 ("t~~" ["t~"])
394 ("u''" ["u'"])
395 ("u::" ["u:"])
396 ("u\"\"" ["u\""])
397 ("u``" ["u`"])
398 ("y''" ["y'"])
399 ("z''" ["z'"])
400 ("z``" ["z`"])
401 ("z~~" ["z~"])
402 )
403
404 (quail-define-package
405 "latin-3-alt-postfix" "Latin-3" "3<" t
406 "Latin-3 character input method with postfix modifiers
407 This input method differs from `latin-3-postfix' in that
408 comma is not special (use ` instead), and period is not
409 special (use slash instead).
410
411 | postfix | examples
412 ------------+---------+----------
413 acute | ' | a' -> á
414 grave | ` | a` -> à
415 circumflex | ^ | a^ -> â
416 diaeresis | \" | a\" -> ä
417 dot | / | c/ -> ċ i/ -> ı I/ -> İ
418 cedilla | ` | c` -> ç
419 breve | ~ | g~ -> ğ
420 tilde | ~ | n~ -> ñ
421 stroke | / | h/ -> ħ
422 others | / | s/ -> ß
423
424 It would be natural to use period and comma for dots and cedillas, but
425 that would inconvenient in practice, because periods and commas are
426 needed very often after a letter.
427
428 Doubling the postfix separates the letter and postfix: e.g. a'' -> a'
429 " nil t nil nil nil nil nil nil nil nil t)
430
431 (quail-define-rules
432 ("A`" ?À)
433 ("A'" ?Á)
434 ("A^" ?Â)
435 ("A\"" ?Ä)
436 ("C/" ?Ċ)
437 ("C^" ?Ĉ)
438 ("C`" ?Ç)
439 ("E`" ?È)
440 ("E'" ?É)
441 ("E^" ?Ê)
442 ("E\"" ?Ë)
443 ("G~" ?Ğ)
444 ("G/" ?Ġ)
445 ("G^" ?Ĝ)
446 ("H/" ?Ħ)
447 ("H^" ?Ĥ)
448 ("I/" ?İ)
449 ("I`" ?Ì)
450 ("I'" ?Í)
451 ("I^" ?Î)
452 ("I\"" ?Ï)
453 ("J^" ?Ĵ)
454 ("N~" ?Ñ)
455 ("O`" ?Ò)
456 ("O'" ?Ó)
457 ("O^" ?Ô)
458 ("O\"" ?Ö)
459 ("S`" ?Ş)
460 ("S^" ?Ŝ)
461 ("U`" ?Ù)
462 ("U'" ?Ú)
463 ("U^" ?Û)
464 ("U\"" ?Ü)
465 ("U~" ?Ŭ)
466 ("Z/" ?Ż)
467 ("a`" ?à)
468 ("a'" ?á)
469 ("a^" ?â)
470 ("a\"" ?ä)
471 ("c/" ?ċ)
472 ("c^" ?ĉ)
473 ("c`" ?ç)
474 ("e`" ?è)
475 ("e'" ?é)
476 ("e^" ?ê)
477 ("e\"" ?ë)
478 ("g~" ?ğ)
479 ("g/" ?ġ)
480 ("g^" ?ĝ)
481 ("h/" ?ħ)
482 ("h^" ?ĥ)
483 ("i/" ?ı)
484 ("i`" ?ì)
485 ("i'" ?í)
486 ("i^" ?î)
487 ("i\"" ?ï)
488 ("j^" ?ĵ)
489 ("n~" ?ñ)
490 ("o`" ?ò)
491 ("o'" ?ó)
492 ("o^" ?ô)
493 ("o\"" ?ö)
494 ("s`" ?ş)
495 ("s/" ?ß)
496 ("s^" ?ŝ)
497 ("u`" ?ù)
498 ("u'" ?ú)
499 ("u^" ?û)
500 ("u\"" ?ü)
501 ("u~" ?ŭ)
502 ("z/" ?ż)
503
504 ("A``" ["A`"])
505 ("A''" ["A'"])
506 ("A^^" ["A^"])
507 ("A\"\"" ["A\""])
508 ("C//" ["C/"])
509 ("C^^" ["C^"])
510 ("C``" ["C`"])
511 ("E``" ["E`"])
512 ("E''" ["E'"])
513 ("E^^" ["E^"])
514 ("E\"\"" ["E\""])
515 ("G~~" ["G~"])
516 ("G//" ["G/"])
517 ("G^^" ["G^"])
518 ("H//" ["H/"])
519 ("H^^" ["H^"])
520 ("I//" ["I/"])
521 ("I``" ["I`"])
522 ("I''" ["I'"])
523 ("I^^" ["I^"])
524 ("I\"\"" ["I\""])
525 ("J^^" ["J^"])
526 ("N~~" ["N~"])
527 ("O``" ["O`"])
528 ("O''" ["O'"])
529 ("O^^" ["O^"])
530 ("O\"\"" ["O\""])
531 ("S``" ["S`"])
532 ("S^^" ["S^"])
533 ("U``" ["U`"])
534 ("U''" ["U'"])
535 ("U^^" ["U^"])
536 ("U\"\"" ["U\""])
537 ("U~~" ["U~"])
538 ("Z//" ["Z/"])
539 ("a``" ["a`"])
540 ("a''" ["a'"])
541 ("a^^" ["a^"])
542 ("a\"\"" ["a\""])
543 ("c//" ["c/"])
544 ("c^^" ["c^"])
545 ("c``" ["c`"])
546 ("e``" ["e`"])
547 ("e''" ["e'"])
548 ("e^^" ["e^"])
549 ("e\"\"" ["e\""])
550 ("g~~" ["g~"])
551 ("g//" ["g/"])
552 ("g^^" ["g^"])
553 ("h//" ["h/"])
554 ("h^^" ["h^"])
555 ("i//" ["i/"])
556 ("i``" ["i`"])
557 ("i''" ["i'"])
558 ("i^^" ["i^"])
559 ("i\"\"" ["i\""])
560 ("j^^" ["j^"])
561 ("n~~" ["n~"])
562 ("o``" ["o`"])
563 ("o''" ["o'"])
564 ("o^^" ["o^"])
565 ("o\"\"" ["o\""])
566 ("s``" ["s`"])
567 ("s//" ["s/"])
568 ("s^^" ["s^"])
569 ("u``" ["u`"])
570 ("u''" ["u'"])
571 ("u^^" ["u^"])
572 ("u\"\"" ["u\""])
573 ("u~~" ["u~"])
574 ("z//" ["z/"])
575 )
576
577 (quail-define-package
578 "latin-4-alt-postfix" "Latin-4" "4<" t
579 "Latin-4 characters input method with postfix modifiers
580 This input method differs from `latin-4-postfix' in that
581 comma is not special (use ` instead), and period is not
582 special (use ~ instead).
583
584 | postfix | examples
585 ------------+---------+----------
586 acute | ' | a' -> á
587 circumflex | ^ | a^ -> â
588 diaeresis | \" | a\" -> ä
589 ogonek | ` | a` -> ą
590 macron | - | a- -> ā
591 tilde | ~ | a~ -> ã
592 caron | ~ | c~ -> č
593 dot | ~ | e~ -> ė
594 cedilla | ` | k` -> ķ g` -> ģ
595 stroke | / | d/ -> đ
596 nordic | / | a/ -> å e/ -> æ o/ -> ø
597 others | / | s/ -> ß n/ -> ŋ k/ -> ĸ
598
599 It seems natural to use period and comma for dots and
600 cedillas/ogoneks, but that is inconvenient in practice, because
601 periods and commas are needed very often after a letter.
602
603 Doubling the postfix separates the letter and postfix: e.g. a'' -> a'
604 " nil t nil nil nil nil nil nil nil nil t)
605
606 (quail-define-rules
607 ("A`" ?Ą)
608 ("A-" ?Ā)
609 ("A'" ?Á)
610 ("A^" ?Â)
611 ("A~" ?Ã)
612 ("A\"" ?Ä)
613 ("A/" ?Å)
614 ("C~" ?Č)
615 ("D/" ?Đ)
616 ("E/" ?Æ)
617 ("E-" ?Ē)
618 ("E'" ?É)
619 ("E`" ?Ę)
620 ("E\"" ?Ë)
621 ("E~" ?Ė)
622 ("G`" ?Ģ)
623 ("I~" ?Ĩ)
624 ("I`" ?Į)
625 ("I'" ?Í)
626 ("I^" ?Î)
627 ("I-" ?Ī)
628 ("K`" ?Ķ)
629 ("L`" ?Ļ)
630 ("N/" ?Ŋ)
631 ("N`" ?Ņ)
632 ("O-" ?Ō)
633 ("O^" ?Ô)
634 ("O~" ?Õ)
635 ("O\"" ?Ö)
636 ("O/" ?Ø)
637 ("R`" ?Ŗ)
638 ("S~" ?Š)
639 ("T/" ?Ŧ)
640 ("U`" ?Ų)
641 ("U'" ?Ú)
642 ("U^" ?Û)
643 ("U\"" ?Ü)
644 ("U~" ?Ũ)
645 ("U-" ?Ū)
646 ("Z~" ?Ž)
647 ("a`" ?ą)
648 ("a-" ?ā)
649 ("a'" ?á)
650 ("a^" ?â)
651 ("a~" ?ã)
652 ("a\"" ?ä)
653 ("a/" ?å)
654 ("c~" ?č)
655 ("d/" ?đ)
656 ("e/" ?æ)
657 ("e-" ?ē)
658 ("e'" ?é)
659 ("e`" ?ę)
660 ("e\"" ?ë)
661 ("e~" ?ė)
662 ("g`" ?ģ)
663 ("i~" ?ĩ)
664 ("i`" ?į)
665 ("i'" ?í)
666 ("i^" ?î)
667 ("i-" ?ī)
668 ("k/" ?ĸ)
669 ("k`" ?ķ)
670 ("l`" ?ļ)
671 ("n/" ?ŋ)
672 ("n`" ?ņ)
673 ("o-" ?ō)
674 ("o^" ?ô)
675 ("o~" ?õ)
676 ("o\"" ?ö)
677 ("o/" ?ø)
678 ("r`" ?ŗ)
679 ("s/" ?ß)
680 ("s~" ?š)
681 ("t/" ?ŧ)
682 ("u`" ?ų)
683 ("u'" ?ú)
684 ("u^" ?û)
685 ("u\"" ?ü)
686 ("u~" ?ũ)
687 ("u-" ?ū)
688 ("z~" ?ž)
689
690 ("A``" ["A`"])
691 ("A--" ["A-"])
692 ("A''" ["A'"])
693 ("A^^" ["A^"])
694 ("A~~" ["A~"])
695 ("A\"\"" ["A\""])
696 ("A//" ["A/"])
697 ("C~~" ["C~"])
698 ("D//" ["D/"])
699 ("E//" ["E/"])
700 ("E--" ["E-"])
701 ("E''" ["E'"])
702 ("E``" ["E`"])
703 ("E\"\"" ["E\""])
704 ("E~~" ["E~"])
705 ("G``" ["G`"])
706 ("I~~" ["I~"])
707 ("I``" ["I`"])
708 ("I''" ["I'"])
709 ("I^^" ["I^"])
710 ("I--" ["I-"])
711 ("K``" ["K`"])
712 ("L``" ["L`"])
713 ("N//" ["N/"])
714 ("N``" ["N`"])
715 ("O--" ["O-"])
716 ("O^^" ["O^"])
717 ("O~~" ["O~"])
718 ("O\"\"" ["O\""])
719 ("O//" ["O/"])
720 ("R``" ["R`"])
721 ("S~~" ["S~"])
722 ("T//" ["T/"])
723 ("U``" ["U`"])
724 ("U''" ["U'"])
725 ("U^^" ["U^"])
726 ("U\"\"" ["U\""])
727 ("U~~" ["U~"])
728 ("U--" ["U-"])
729 ("Z~~" ["Z~"])
730 ("a``" ["a`"])
731 ("a--" ["a-"])
732 ("a''" ["a'"])
733 ("a^^" ["a^"])
734 ("a~~" ["a~"])
735 ("a\"\"" ["a\""])
736 ("a//" ["a/"])
737 ("c~~" ["c~"])
738 ("d//" ["d/"])
739 ("e//" ["e/"])
740 ("e--" ["e-"])
741 ("e''" ["e'"])
742 ("e``" ["e`"])
743 ("e\"\"" ["e\""])
744 ("e~~" ["e~"])
745 ("g``" ["g`"])
746 ("i~~" ["i~"])
747 ("i``" ["i`"])
748 ("i''" ["i'"])
749 ("i^^" ["i^"])
750 ("i--" ["i-"])
751 ("k//" ["k/"])
752 ("k``" ["k`"])
753 ("l``" ["l`"])
754 ("n//" ["n/"])
755 ("n``" ["n`"])
756 ("o--" ["o-"])
757 ("o^^" ["o^"])
758 ("o~~" ["o~"])
759 ("o\"\"" ["o\""])
760 ("o//" ["o/"])
761 ("r``" ["r`"])
762 ("s//" ["s/"])
763 ("s~~" ["s~"])
764 ("t//" ["t/"])
765 ("u``" ["u`"])
766 ("u''" ["u'"])
767 ("u^^" ["u^"])
768 ("u\"\"" ["u\""])
769 ("u~~" ["u~"])
770 ("u--" ["u-"])
771 ("z~~" ["z~"])
772 )
773
774 (quail-define-package
775 "latin-5-alt-postfix" "Latin-5" "5<" t
776 "Latin-5 characters input method with postfix modifiers
777 This input method differs from `latin-5-postfix' in that
778 comma is not special (use ` instead), and period is not
779 special (use / instead).
780
781 | postfix | examples
782 ------------+---------+----------
783 acute | ' | a' -> á
784 grave | ` | a` -> à
785 circumflex | ^ | a^ -> â
786 diaeresis | \" | a\" -> ä
787 tilde | ~ | a~ -> ã
788 breve | ~ | g~ -> ğ
789 cedilla | ` | c` -> ç
790 dot | / | i/ -> ı I/ -> İ
791 nordic | / | a/ -> å e/ -> æ o/ -> ø
792 others | / | s/ -> ß
793
794 It seems natural to use period and comma for dots and cedillas, but
795 that is inconvenient in practice, because periods and commas are
796 needed very often after a letter.
797
798 Doubling the postfix separates the letter and postfix: e.g. a'' -> a'
799 " nil t nil nil nil nil nil nil nil nil t)
800
801 (quail-define-rules
802 ("A'" ?Á)
803 ("A/" ?Å)
804 ("A\"" ?Ä)
805 ("A^" ?Â)
806 ("A`" ?À)
807 ("A~" ?Ã)
808 ("C`" ?Ç)
809 ("E'" ?É)
810 ("E/" ?Æ)
811 ("E\"" ?Ë)
812 ("E^" ?Ê)
813 ("E`" ?È)
814 ("G~" ?Ğ)
815 ("I'" ?Í)
816 ("I/" ?İ)
817 ("I\"" ?Ï)
818 ("I^" ?Î)
819 ("I`" ?Ì)
820 ("N~" ?Ñ)
821 ("O'" ?Ó)
822 ("O/" ?Ø)
823 ("O\"" ?Ö)
824 ("O^" ?Ô)
825 ("O`" ?Ò)
826 ("O~" ?Õ)
827 ("S`" ?Ş)
828 ("U'" ?Ú)
829 ("U\"" ?Ü)
830 ("U^" ?Û)
831 ("U`" ?Ù)
832 ("a'" ?á)
833 ("a/" ?å)
834 ("a\"" ?ä)
835 ("a^" ?â)
836 ("a`" ?à)
837 ("a~" ?ã)
838 ("c`" ?ç)
839 ("e'" ?é)
840 ("e/" ?æ)
841 ("e\"" ?ë)
842 ("e^" ?ê)
843 ("e`" ?è)
844 ("g~" ?ğ)
845 ("i'" ?í)
846 ("i/" ?ı)
847 ("i\"" ?ï)
848 ("i^" ?î)
849 ("i`" ?ì)
850 ("n~" ?ñ)
851 ("o'" ?ó)
852 ("o/" ?ø)
853 ("o\"" ?ö)
854 ("o^" ?ô)
855 ("o`" ?ò)
856 ("o~" ?õ)
857 ("s`" ?ş)
858 ("s/" ?ß)
859 ("u'" ?ú)
860 ("u\"" ?ü)
861 ("u^" ?û)
862 ("u`" ?ù)
863 ("y\"" ?ÿ)
864
865 ("A''" ["A'"])
866 ("A//" ["A/"])
867 ("A\"\"" ["A\""])
868 ("A^^" ["A^"])
869 ("A``" ["A`"])
870 ("A~~" ["A~"])
871 ("C``" ["C`"])
872 ("E''" ["E'"])
873 ("E//" ["E/"])
874 ("E\"\"" ["E\""])
875 ("E^^" ["E^"])
876 ("E``" ["E`"])
877 ("G~~" ["G~"])
878 ("I''" ["I'"])
879 ("I//" ["I/"])
880 ("I\"\"" ["I\""])
881 ("I^^" ["I^"])
882 ("I``" ["I`"])
883 ("N~~" ["N~"])
884 ("O''" ["O'"])
885 ("O//" ["O/"])
886 ("O\"\"" ["O\""])
887 ("O^^" ["O^"])
888 ("O``" ["O`"])
889 ("O~~" ["O~"])
890 ("S``" ["S`"])
891 ("U''" ["U'"])
892 ("U\"\"" ["U\""])
893 ("U^^" ["U^"])
894 ("U``" ["U`"])
895 ("a''" ["a'"])
896 ("a//" ["a/"])
897 ("a\"\"" ["a\""])
898 ("a^^" ["a^"])
899 ("a``" ["a`"])
900 ("a~~" ["a~"])
901 ("c``" ["c`"])
902 ("e''" ["e'"])
903 ("e//" ["e/"])
904 ("e\"\"" ["e\""])
905 ("e^^" ["e^"])
906 ("e``" ["e`"])
907 ("g~~" ["g~"])
908 ("i''" ["i'"])
909 ("i//" ["i/"])
910 ("i\"\"" ["i\""])
911 ("i^^" ["i^"])
912 ("i``" ["i`"])
913 ("n~~" ["n~"])
914 ("o''" ["o'"])
915 ("o//" ["o/"])
916 ("o\"\"" ["o\""])
917 ("o^^" ["o^"])
918 ("o``" ["o`"])
919 ("o~~" ["o~"])
920 ("s``" ["s`"])
921 ("s//" ["s/"])
922 ("u''" ["u'"])
923 ("u\"\"" ["u\""])
924 ("u^^" ["u^"])
925 ("u``" ["u`"])
926 ("y\"\"" ["y\""])
927 )
928
929
930
931 (quail-define-package
932 "french-alt-postfix" "French" "FR<" t
933 "French (Français) input method with postfix modifiers
934
935 ` pour grave, ' pour aigu, ^ pour circonflexe, et \" pour tréma.
936 Par exemple: a` -> à e' -> é.
937
938 Ç, «, et » sont produits par C/, <<, et >>.
939
940 En doublant la frappe des diacritiques, ils s'isoleront de la lettre.
941 Par exemple: e'' -> e'
942
943 <e dans l'o> n'est pas disponible."
944 nil t nil nil nil nil nil nil nil nil t)
945
946 (quail-define-rules
947 ("A`" ?À)
948 ("A^" ?Â)
949 ("a`" ?à)
950 ("a^" ?â)
951 ("E`" ?È)
952 ("E'" ?É)
953 ("E^" ?Ê)
954 ("E\"" ?Ë)
955 ("e`" ?è)
956 ("e'" ?é)
957 ("e^" ?ê)
958 ("e\"" ?ë)
959 ("I^" ?Î)
960 ("I\"" ?Ï)
961 ("i^" ?î)
962 ("i\"" ?ï)
963 ("O^" ?Ô)
964 ("o^" ?ô)
965 ("U`" ?Ù)
966 ("U^" ?Û)
967 ("U\"" ?Ü)
968 ("u`" ?ù)
969 ("u^" ?û)
970 ("u\"" ?ü)
971 ("C/" ?Ç)
972 ("c/" ?ç)
973 ("<<" ?«)
974 (">>" ?»)
975
976 ("A``" ["A`"])
977 ("A^^" ["A^"])
978 ("a``" ["a`"])
979 ("a^^" ["a^"])
980 ("E``" ["E`"])
981 ("E''" ["E'"])
982 ("E^^" ["E^"])
983 ("E\"\"" ["E\""])
984 ("e``" ["e`"])
985 ("e''" ["e'"])
986 ("e^^" ["e^"])
987 ("e\"\"" ["e\""])
988 ("I^^" ["I^"])
989 ("I\"\"" ["I\""])
990 ("i^^" ["i^"])
991 ("i\"\"" ["i\""])
992 ("O^^" ["O^"])
993 ("o^^" ["o^"])
994 ("U``" ["U`"])
995 ("U^^" ["U^"])
996 ("U\"\"" ["U\""])
997 ("u``" ["u`"])
998 ("u^^" ["u^"])
999 ("u\"\"" ["u\""])
1000 ("C//" ["C/"])
1001 ("c//" ["c/"])
1002 ("<<<" ["<<"])
1003 (">>>" [">>"])
1004 )
1005
1006
1007
1008 (quail-define-package
1009 "italian-alt-postfix" "Latin-1" "IT<" t
1010 "Italian (Italiano) input method with postfix modifiers
1011
1012 a' -> á A' -> Á a` -> à A` -> À i^ -> î << -> «
1013 e' -> é E' -> É e` -> è E` -> È I^ -> Î >> -> »
1014 i' -> í I' -> Í i` -> ì I` -> Ì o_ -> º
1015 o' -> ó O' -> Ó o` -> ò O` -> Ò a_ -> ª
1016 u' -> ú U' -> Ú u` -> ù U` -> Ù
1017
1018 This method is for purists who like accents the old way.
1019
1020 Doubling the postfix separates the letter and postfix: e.g. a`` -> a`
1021 " nil t nil nil nil nil nil nil nil nil t)
1022
1023 (quail-define-rules
1024 ("A`" ?À)
1025 ("A'" ?Á)
1026 ("a`" ?à)
1027 ("a'" ?á)
1028 ("E`" ?È)
1029 ("E'" ?É)
1030 ("e`" ?è)
1031 ("e'" ?é)
1032 ("I`" ?Ì)
1033 ("i`" ?ì)
1034 ("I'" ?Í)
1035 ("i'" ?í)
1036 ("I^" ?Î)
1037 ("i^" ?î)
1038 ("O`" ?Ò)
1039 ("o`" ?ò)
1040 ("O'" ?Ó)
1041 ("o'" ?ó)
1042 ("U`" ?Ù)
1043 ("u`" ?ù)
1044 ("U'" ?Ú)
1045 ("u'" ?ú)
1046 ("<<" ?«)
1047 (">>" ?»)
1048 ("o_" ?º)
1049 ("a_" ?ª)
1050
1051 ("A``" ["A`"])
1052 ("A''" ["A'"])
1053 ("a``" ["a`"])
1054 ("a''" ["a'"])
1055 ("E``" ["E`"])
1056 ("E''" ["E'"])
1057 ("e``" ["e`"])
1058 ("e''" ["e'"])
1059 ("I``" ["I`"])
1060 ("i``" ["i`"])
1061 ("I''" ["I'"])
1062 ("i''" ["i'"])
1063 ("I^^" ["I^"])
1064 ("i^^" ["i^"])
1065 ("O``" ["O`"])
1066 ("o``" ["o`"])
1067 ("O''" ["O'"])
1068 ("o''" ["o'"])
1069 ("U``" ["U`"])
1070 ("u``" ["u`"])
1071 ("U''" ["U'"])
1072 ("u''" ["u'"])
1073 ("<<<" ["<<"])
1074 (">>>" [">>"])
1075 ("o__" ["o_"])
1076 ("a__" ["a_"])
1077 )
1078
1079
1080 (quail-define-package
1081 "turkish-alt-postfix" "Turkish" "TR«" t
1082 "Turkish (Türkçe) input method with postfix modifiers.
1083 This input method differs from `turkish-postfix' in that
1084 comma is not special (use ` instead).
1085
1086 turkish-latin-3-alt-postfix is an obsolete alias for turkish-alt-postfix.
1087
1088 Note for I, ı, İ, i.
1089
1090 A^ -> Â
1091 C` -> Ç
1092 G^ -> Ğ
1093 I -> I
1094 i -> ı
1095 I/ -> İ
1096 i/ -> i
1097 O\" -> Ö
1098 S` -> Ş
1099 U\" -> Ü
1100 U^ -> Û
1101
1102 Doubling the postfix separates the letter and postfix: e.g. a^^ -> a^
1103 " nil t nil nil nil nil nil nil nil nil t)
1104
1105 (quail-define-rules
1106 ("A^" ?Â)
1107 ("a^" ?â)
1108 ("C`" ?Ç)
1109 ("c`" ?ç)
1110 ("G^" ?Ğ)
1111 ("g^" ?ğ)
1112 ("I/" ?İ)
1113 ("i" ?ı)
1114 ("i/" ?i)
1115 ("O\"" ?Ö)
1116 ("o\"" ?ö)
1117 ("S`" ?Ş)
1118 ("s`" ?ş)
1119 ("U\"" ?Ü)
1120 ("u\"" ?ü)
1121 ("U^" ?Û)
1122 ("u^" ?û)
1123
1124 ("A^^" ["A^"])
1125 ("a^^" ["a^"])
1126 ("C``" ["C`"])
1127 ("c``" ["c`"])
1128 ("G^^" ["G^"])
1129 ("g^^" ["g^"])
1130 ("I//" ["I/"])
1131 ("i" ["i"])
1132 ("i//" ["i/"])
1133 ("O\"\"" ["O\""])
1134 ("o\"\"" ["o\""])
1135 ("S``" ["S`"])
1136 ("s``" ["s`"])
1137 ("U\"\"" ["U\""])
1138 ("u\"\"" ["u\""])
1139 ("U^^" ["U^"])
1140 ("u^^" ["u^"])
1141 )
1142
1143 ;; Backwards compatibility.
1144 (push (cons "turkish-latin-3-alt-postfix"
1145 (cdr (assoc "turkish-alt-postfix" quail-package-alist)))
1146 quail-package-alist)
1147
1148 ;; Dutch Quail input method derived from the one in Yudit by Roman
1149 ;; Czyborra.
1150 (quail-define-package
1151 "dutch" "Dutch" "NL" t
1152 "Dutch character mixfix input method.
1153 Caters for French and Turkish as well as Dutch.
1154
1155 | | examples
1156 ------------+---------+----------
1157 others | | fl. -> ƒ eur. -> € ij -> ij IJ -> IJ
1158 ------------+---------+----------
1159 | postfix |
1160 ------------+---------+----------
1161 acute | ' | a' -> á
1162 grave | ` | a` -> à
1163 circumflex | ^ | a^ -> â
1164 Turkish | various | i/ -> ı s, -> ş g^ -> ğ I/ -> İ
1165 | | S, -> Ş G^ -> Ğ
1166 ------------+---------+----------
1167 | prefix |
1168 ------------+---------+----------
1169 diaeresis | \" | \"a -> ä
1170
1171 Doubling the postfix separates the letter and postfix: e.g. a'' -> a'
1172 " nil t nil nil nil nil nil nil nil nil t)
1173
1174 (quail-define-rules
1175 ("fl." ?ƒ) ;; LATIN SMALL LETTER F WITH HOOK (florin currency symbol)
1176 ("eur." ?€) ;; EURO SIGN
1177 ;; “The 25th letter of the Dutch alphabet.”
1178 ("ij" ?ij) ;; LATIN SMALL LIGATURE IJ
1179 ("IJ" ?IJ) ;; LATIN CAPITAL LIGATURE IJ
1180 ;; “Trema on the second letter of vowel pair.” Yudit uses `:', not `"'.
1181 ("\"a" ?ä) ;; LATIN SMALL LETTER A WITH DIAERESIS
1182 ("\"e" ?ë) ;; LATIN SMALL LETTER E WITH DIAERESIS
1183 ("\"i" ?ï) ;; LATIN SMALL LETTER I WITH DIAERESIS
1184 ("\"o" ?ö) ;; LATIN SMALL LETTER O WITH DIAERESIS
1185 ("\"u" ?ü) ;; LATIN SMALL LETTER U WITH DIAERESIS
1186 ("\"A" ?Ä) ;; LATIN CAPITAL LETTER A WITH DIAERESIS
1187 ("\"E" ?Ë) ;; LATIN CAPITAL LETTER E WITH DIAERESIS
1188 ("\"I" ?Ï) ;; LATIN CAPITAL LETTER I WITH DIAERESIS
1189 ("\"O" ?Ö) ;; LATIN CAPITAL LETTER O WITH DIAERESIS
1190 ("\"U" ?Ü) ;; LATIN CAPITAL LETTER U WITH DIAERESIS
1191 ;; “Acute, marking emphasis on long vowels”:
1192 ("a'" ?á) ;; LATIN SMALL LETTER A WITH ACUTE
1193 ("e'" ?é) ;; LATIN SMALL LETTER E WITH ACUTE
1194 ("i'" ?í) ;; LATIN SMALL LETTER I WITH ACUTE
1195 ("o'" ?ó) ;; LATIN SMALL LETTER O WITH ACUTE
1196 ("u'" ?ú) ;; LATIN SMALL LETTER U WITH ACUTE
1197 ("A'" ?Á) ;; LATIN CAPITAL LETTER A WITH ACUTE
1198 ("E'" ?É) ;; LATIN CAPITAL LETTER E WITH ACUTE
1199 ("I'" ?Í) ;; LATIN CAPITAL LETTER I WITH ACUTE
1200 ("O'" ?Ó) ;; LATIN CAPITAL LETTER O WITH ACUTE
1201 ("U'" ?Ú) ;; LATIN CAPITAL LETTER U WITH ACUTE
1202 ;; “Grave, marking emphasis on short vowels”:
1203 ("a`" ?à) ;; LATIN SMALL LETTER A WITH GRAVE
1204 ("e`" ?è) ;; LATIN SMALL LETTER E WITH GRAVE
1205 ("i`" ?ì) ;; LATIN SMALL LETTER I WITH GRAVE
1206 ("o`" ?ò) ;; LATIN SMALL LETTER O WITH GRAVE
1207 ("u`" ?ù) ;; LATIN SMALL LETTER U WITH GRAVE
1208 ("A`" ?À) ;; LATIN CAPITAL LETTER A WITH GRAVE
1209 ("E`" ?È) ;; LATIN CAPITAL LETTER E WITH GRAVE
1210 ("I`" ?Ì) ;; LATIN CAPITAL LETTER I WITH GRAVE
1211 ("O`" ?Ò) ;; LATIN CAPITAL LETTER O WITH GRAVE
1212 ("U`" ?Ù) ;; LATIN CAPITAL LETTER U WITH GRAVE
1213 ;; “Cater for the use of many French words and use of the circumflex
1214 ;; in Frisian.” Yudit used `;' for cedilla.
1215 ("c," ?ç) ;; LATIN SMALL LETTER C WITH CEDILLA
1216 ("C," ?Ç) ;; LATIN CAPITAL LETTER C WITH CEDILLA
1217 ("a^" ?â) ;; LATIN SMALL LETTER A WITH CIRCUMFLEX
1218 ("e^" ?ê) ;; LATIN SMALL LETTER E WITH CIRCUMFLEX
1219 ("i^" ?î) ;; LATIN SMALL LETTER I WITH CIRCUMFLEX
1220 ("o^" ?ô) ;; LATIN SMALL LETTER O WITH CIRCUMFLEX
1221 ("u^" ?û) ;; LATIN SMALL LETTER U WITH CIRCUMFLEX
1222 ("A^" ?Â) ;; LATIN CAPITAL LETTER A WITH CIRCUMFLEX
1223 ("E^" ?Ê) ;; LATIN CAPITAL LETTER E WITH CIRCUMFLEX
1224 ("I^" ?Î) ;; LATIN CAPITAL LETTER I WITH CIRCUMFLEX
1225 ("O^" ?Ô) ;; LATIN CAPITAL LETTER O WITH CIRCUMFLEX
1226 ("U^" ?Û) ;; LATIN CAPITAL LETTER U WITH CIRCUMFLEX
1227 ;; “Follow the example of the Dutch POSIX locale, using ISO-8859-9 to
1228 ;; cater to the many Turks in Dutch society.” Perhaps German methods
1229 ;; should do so too. Follow turkish-alt-postfix here.
1230 ("i/" ?ı) ;; LATIN SMALL LETTER I WITH NO DOT
1231 ("s," ?ş) ;; LATIN SMALL LETTER S WITH CEDILLA
1232 ("g^" ?ğ) ;; LATIN SMALL LETTER G WITH BREVE
1233 ("I/" ?İ) ;; LATIN CAPITAL LETTER I WITH DOT ABOVE
1234 ("S," ?Ş) ;; LATIN CAPITAL LETTER S WITH CEDILLA
1235 ("G^" ?Ğ) ;; LATIN CAPITAL LETTER G WITH BREVE
1236 )
1237
1238 ;; Originally from Yudit, discussed with Albertas Agejevas
1239 ;; <alga@uosis.mif.vu.lt>
1240 (quail-define-package
1241 "lithuanian-numeric" "Lithuanian" "LtN" t
1242 "Lithuanian numeric input method.
1243 " nil t t t t nil nil nil nil nil t)
1244
1245 (quail-define-rules
1246 ("1" ?ą)
1247 ("2" ?č)
1248 ("3" ?ę)
1249 ("4" ?ė)
1250 ("5" ?į)
1251 ("6" ?š)
1252 ("7" ?ų)
1253 ("8" ?ū)
1254 ("9" ?„)
1255 ("0" ?“)
1256 ("=" ?ž)
1257 ("!" ?Ą)
1258 ("@" ?Č)
1259 ("#" ?Ę)
1260 ("$" ?Ė)
1261 ("%" ?Į)
1262 ("^" ?Š)
1263 ("&" ?Ų)
1264 ("*" ?Ū)
1265 ("+" ?Ž))
1266
1267 ;; From XFree 4.1 /usr/X11R6/lib/X11/xkb/symbols/lt, suggested by
1268 ;; Albertas Agejevas <alga@uosis.mif.vu.lt>
1269 (quail-define-package
1270 "lithuanian-keyboard" "Lithuanian" "Lt" t
1271 "Lithuanian standard keyboard input method.
1272 " nil t t t t nil nil nil nil nil t)
1273
1274 (quail-define-rules
1275 ("1" ?ą)
1276 ("!" ?Ą)
1277 ("2" ?č)
1278 ("@" ?Č)
1279 ("#" ?Ę)
1280 ("4" ?ė)
1281 ("$" ?Ė)
1282 ("5" ?į)
1283 ("%" ?Į)
1284 ("6" ?š)
1285 ("^" ?Š)
1286 ("7" ?ų)
1287 ("&" ?Ų)
1288 ("9" ?„)
1289 ("0" ?“)
1290 ("=" ?ž)
1291 ("+" ?Ž))
1292
1293 ;; From XFree 4.1 /usr/X11R6/lib/X11/xkb/symbols/lv
1294 (quail-define-package
1295 "latvian-keyboard" "Latvian" "Lv" t
1296 "Latvian standard keyboard input method.
1297 " nil t t t t nil nil nil nil nil t)
1298
1299 (quail-define-rules
1300 ("4" ?€)
1301 ("$" ?¢)
1302 ("e" ?ē)
1303 ("E" ?Ē)
1304 ("r" ?ŗ)
1305 ("R" ?Ŗ)
1306 ("u" ?ū)
1307 ("U" ?Ū)
1308 ("i" ?ī)
1309 ("I" ?Ī)
1310 ("o" ?ō)
1311 ("O" ?Ō)
1312 ("a" ?ā)
1313 ("A" ?Ā)
1314 ("s" ?š)
1315 ("S" ?Š)
1316 ("g" ?ģ)
1317 ("G" ?Ģ)
1318 ("k" ?ķ)
1319 ("K" ?Ķ)
1320 ("l" ?ļ)
1321 ("L" ?Ļ)
1322 ("\'" ?“)
1323 ("\"" ?„)
1324 ("z" ?ž)
1325 ("Z" ?Ž)
1326 ("c" ?č)
1327 ("C" ?Č)
1328 ("n" ?ņ)
1329 ("N" ?Ņ))
1330
1331 (quail-define-package
1332 "latin-alt-postfix" "Latin" "L<" t
1333 "Latin character input method with postfix modifiers.
1334 This is the union of various input methods originally made for input
1335 of characters from a single Latin-N charset.
1336
1337 | postfix | examples
1338 ------------+---------+----------
1339 acute | ' | a' -> á
1340 grave | ` | a` -> à
1341 circumflex | ^ | a^ -> â
1342 diaeresis | \" | a\" -> ä
1343 tilde | ~ | a~ -> ã
1344 cedilla | /` | c/ -> ç c` -> ç
1345 ogonek | ` | a` -> ą
1346 breve | ~ | a~ -> ă
1347 caron | ~ | c~ -> č
1348 dbl. acute | : | o: -> ő
1349 ring | ` | u` -> ů
1350 dot | ` | z` -> ż
1351 stroke | / | d/ -> đ
1352 nordic | / | d/ -> ð t/ -> þ a/ -> å e/ -> æ o/ -> ø
1353 others | /<> | s/ -> ß ?/ -> ¿ !/ -> ¡
1354 | various | << -> « >> -> » o_ -> º a_ -> ª
1355
1356 It would be natural to use comma for cedillas, but that would be
1357 inconvenient in practice because commas are needed very often after a
1358 letter.
1359
1360 Doubling the postfix separates the letter and postfix: e.g. a'' -> a'
1361 " nil t nil nil nil nil nil nil nil nil t)
1362
1363 ;; Fixme: ¦ § ¨ © ¬ ­ ® ¯ ° ± ² ³ ´ µ ¶ · ¸ ¹ ¼ ½ ¾ × ÷
1364 (quail-define-rules
1365 (" _" ? )
1366 ("!/" ?¡)
1367 ("//" ?°)
1368 ("<<" ?«)
1369 (">>" ?»)
1370 ("?/" ?¿)
1371 ("$/" ?£)
1372 ("$/" ?¤)
1373 ("A'" ?Á)
1374 ("A-" ?Ā)
1375 ("A/" ?Å)
1376 ("A\"" ?Ä)
1377 ("A^" ?Â)
1378 ("A`" ?À)
1379 ("A`" ?Ą)
1380 ("A~" ?Ã)
1381 ("A~" ?Ă)
1382 ("C'" ?Ć)
1383 ("C/" ?Ç)
1384 ("C/" ?Ċ)
1385 ("C^" ?Ĉ)
1386 ("C`" ?Ç)
1387 ("C~" ?Č)
1388 ("D/" ?Ð)
1389 ("D/" ?Đ)
1390 ("D~" ?Ď)
1391 ("E'" ?É)
1392 ("E-" ?Ē)
1393 ("E/" ?Æ)
1394 ("E\"" ?Ë)
1395 ("E^" ?Ê)
1396 ("E`" ?È)
1397 ("E`" ?Ę)
1398 ("E~" ?Ė)
1399 ("E~" ?Ě)
1400 ("G/" ?Ġ)
1401 ("G^" ?Ĝ)
1402 ("G`" ?Ģ)
1403 ("G~" ?Ğ)
1404 ("H/" ?Ħ)
1405 ("H^" ?Ĥ)
1406 ("I'" ?Í)
1407 ("I-" ?Ī)
1408 ("I/" ?İ)
1409 ("I\"" ?Ï)
1410 ("I^" ?Î)
1411 ("I`" ?Ì)
1412 ("I`" ?Į)
1413 ("I~" ?Ĩ)
1414 ("J^" ?Ĵ)
1415 ("K`" ?Ķ)
1416 ("L'" ?Ĺ)
1417 ("L/" ?Ł)
1418 ("L`" ?Ļ)
1419 ("L~" ?Ľ)
1420 ("N'" ?Ń)
1421 ("N/" ?Ŋ)
1422 ("N`" ?Ņ)
1423 ("N~" ?Ñ)
1424 ("N~" ?Ň)
1425 ("O'" ?Ó)
1426 ("O-" ?Ō)
1427 ("O/" ?Ø)
1428 ("O:" ?Ő)
1429 ("O\"" ?Ö)
1430 ("O^" ?Ô)
1431 ("O`" ?Ò)
1432 ("O~" ?Õ)
1433 ("R'" ?Ŕ)
1434 ("R`" ?Ŗ)
1435 ("R~" ?Ř)
1436 ("S'" ?Ś)
1437 ("S^" ?Ŝ)
1438 ("S`" ?Ş)
1439 ("S~" ?Š)
1440 ("T/" ?Þ)
1441 ("T/" ?Ŧ)
1442 ("T`" ?Ţ)
1443 ("T~" ?Ť)
1444 ("U'" ?Ú)
1445 ("U-" ?Ū)
1446 ("U:" ?Ű)
1447 ("U\"" ?Ü)
1448 ("U^" ?Û)
1449 ("U`" ?Ù)
1450 ("U`" ?Ů)
1451 ("U`" ?Ų)
1452 ("U~" ?Ũ)
1453 ("U~" ?Ŭ)
1454 ("Y'" ?Ý)
1455 ("Y\"" ?Ÿ)
1456 ("Y=" ?¥)
1457 ("Z'" ?Ź)
1458 ("Z/" ?Ż)
1459 ("Z`" ?Ż)
1460 ("Z~" ?Ž)
1461 ("a'" ?á)
1462 ("a-" ?ā)
1463 ("a/" ?å)
1464 ("a\"" ?ä)
1465 ("a^" ?â)
1466 ("a_" ?ª)
1467 ("a`" ?à)
1468 ("a`" ?ą)
1469 ("a~" ?ã)
1470 ("a~" ?ă)
1471 ("c'" ?ć)
1472 ("c/" ?ç)
1473 ("c/" ?ċ)
1474 ("c/" ?¢)
1475 ("c^" ?ĉ)
1476 ("c`" ?ç)
1477 ("c~" ?č)
1478 ("d/" ?ð)
1479 ("d/" ?đ)
1480 ("d~" ?ď)
1481 ("e'" ?é)
1482 ("e-" ?ē)
1483 ("e/" ?æ)
1484 ("e\"" ?ë)
1485 ("e^" ?ê)
1486 ("e`" ?è)
1487 ("e`" ?ę)
1488 ("e~" ?ė)
1489 ("e~" ?ě)
1490 ("e=" ?€)
1491 ("g/" ?ġ)
1492 ("g^" ?ĝ)
1493 ("g`" ?ģ)
1494 ("g~" ?ğ)
1495 ("h/" ?ħ)
1496 ("h^" ?ĥ)
1497 ("i'" ?í)
1498 ("i-" ?ī)
1499 ("i/" ?ı)
1500 ("i\"" ?ï)
1501 ("i^" ?î)
1502 ("i`" ?ì)
1503 ("i`" ?į)
1504 ("i~" ?ĩ)
1505 ("j^" ?ĵ)
1506 ("k/" ?ĸ)
1507 ("k`" ?ķ)
1508 ("l'" ?ĺ)
1509 ("l/" ?ł)
1510 ("l`" ?ļ)
1511 ("l~" ?ľ)
1512 ("n'" ?ń)
1513 ("n/" ?ŋ)
1514 ("n`" ?ņ)
1515 ("n~" ?ñ)
1516 ("n~" ?ň)
1517 ("o'" ?ó)
1518 ("o-" ?ō)
1519 ("o/" ?ø)
1520 ("o:" ?ő)
1521 ("o\"" ?ö)
1522 ("o^" ?ô)
1523 ("o_" ?º)
1524 ("o`" ?ò)
1525 ("o~" ?õ)
1526 ("r'" ?ŕ)
1527 ("r`" ?ŗ)
1528 ("r~" ?ř)
1529 ("s'" ?ś)
1530 ("s/" ?ß)
1531 ("s^" ?ŝ)
1532 ("s`" ?ş)
1533 ("s~" ?š)
1534 ("t/" ?þ)
1535 ("t/" ?ŧ)
1536 ("t`" ?ţ)
1537 ("t~" ?ť)
1538 ("u'" ?ú)
1539 ("u-" ?ū)
1540 ("u:" ?ű)
1541 ("u\"" ?ü)
1542 ("u^" ?û)
1543 ("u`" ?ù)
1544 ("u`" ?ů)
1545 ("u`" ?ų)
1546 ("u~" ?ũ)
1547 ("u~" ?ŭ)
1548 ("y'" ?ý)
1549 ("y\"" ?ÿ)
1550 ("z'" ?ź)
1551 ("z/" ?ż)
1552 ("z`" ?ż)
1553 ("z~" ?ž)
1554
1555 (" __" [" _"])
1556 ("!//" ["!/"])
1557 ("<<<" ["<<"])
1558 (">>>" [">>"])
1559 ("?//" ["?/"])
1560 ("///" ["//"])
1561 ("$//" ["$/"])
1562 ("A''" ["A'"])
1563 ("A--" ["A-"])
1564 ("A//" ["A/"])
1565 ("A\"\"" ["A\""])
1566 ("A^^" ["A^"])
1567 ("A``" ["A`"])
1568 ("A~~" ["A~"])
1569 ("C''" ["C'"])
1570 ("C//" ["C/"])
1571 ("C^^" ["C^"])
1572 ("C``" ["C`"])
1573 ("C~~" ["C~"])
1574 ("D//" ["D/"])
1575 ("D~~" ["D~"])
1576 ("E''" ["E'"])
1577 ("E--" ["E-"])
1578 ("E//" ["E/"])
1579 ("E\"\"" ["E\""])
1580 ("E^^" ["E^"])
1581 ("E``" ["E`"])
1582 ("E~~" ["E~"])
1583 ("G//" ["G/"])
1584 ("G^^" ["G^"])
1585 ("G``" ["G`"])
1586 ("G~~" ["G~"])
1587 ("H//" ["H/"])
1588 ("H^^" ["H^"])
1589 ("I''" ["I'"])
1590 ("I--" ["I-"])
1591 ("I//" ["I/"])
1592 ("I\"\"" ["I\""])
1593 ("I^^" ["I^"])
1594 ("I``" ["I`"])
1595 ("I~~" ["I~"])
1596 ("J^^" ["J^"])
1597 ("K``" ["K`"])
1598 ("L''" ["L'"])
1599 ("L//" ["L/"])
1600 ("L``" ["L`"])
1601 ("L~~" ["L~"])
1602 ("N''" ["N'"])
1603 ("N//" ["N/"])
1604 ("N``" ["N`"])
1605 ("N~~" ["N~"])
1606 ("O''" ["O'"])
1607 ("O--" ["O-"])
1608 ("O//" ["O/"])
1609 ("O::" ["O:"])
1610 ("O\"\"" ["O\""])
1611 ("O^^" ["O^"])
1612 ("O``" ["O`"])
1613 ("O~~" ["O~"])
1614 ("R''" ["R'"])
1615 ("R``" ["R`"])
1616 ("R~~" ["R~"])
1617 ("S''" ["S'"])
1618 ("S^^" ["S^"])
1619 ("S``" ["S`"])
1620 ("S~~" ["S~"])
1621 ("T//" ["T/"])
1622 ("T``" ["T`"])
1623 ("T~~" ["T~"])
1624 ("U''" ["U'"])
1625 ("U--" ["U-"])
1626 ("U::" ["U:"])
1627 ("U\"\"" ["U\""])
1628 ("U^^" ["U^"])
1629 ("U``" ["U`"])
1630 ("U~~" ["U~"])
1631 ("Y''" ["Y'"])
1632 ("Z''" ["Z'"])
1633 ("Z//" ["Z/"])
1634 ("Z``" ["Z`"])
1635 ("Z~~" ["Z~"])
1636 ("a''" ["a'"])
1637 ("a--" ["a-"])
1638 ("a//" ["a/"])
1639 ("a\"\"" ["a\""])
1640 ("a^^" ["a^"])
1641 ("a__" ["a_"])
1642 ("a``" ["a`"])
1643 ("a~~" ["a~"])
1644 ("c''" ["c'"])
1645 ("c//" ["c/"])
1646 ("c^^" ["c^"])
1647 ("c``" ["c`"])
1648 ("c~~" ["c~"])
1649 ("d//" ["d/"])
1650 ("d~~" ["d~"])
1651 ("e''" ["e'"])
1652 ("e--" ["e-"])
1653 ("e//" ["e/"])
1654 ("e\"\"" ["e\""])
1655 ("e^^" ["e^"])
1656 ("e``" ["e`"])
1657 ("e~~" ["e~"])
1658 ("e==" ["e="])
1659 ("g//" ["g/"])
1660 ("g^^" ["g^"])
1661 ("g``" ["g`"])
1662 ("g~~" ["g~"])
1663 ("h//" ["h/"])
1664 ("h^^" ["h^"])
1665 ("i''" ["i'"])
1666 ("i--" ["i-"])
1667 ("i//" ["i/"])
1668 ("i\"\"" ["i\""])
1669 ("i^^" ["i^"])
1670 ("i``" ["i`"])
1671 ("i~~" ["i~"])
1672 ("j^^" ["j^"])
1673 ("k//" ["k/"])
1674 ("k``" ["k`"])
1675 ("l''" ["l'"])
1676 ("l//" ["l/"])
1677 ("l``" ["l`"])
1678 ("l~~" ["l~"])
1679 ("n''" ["n'"])
1680 ("n//" ["n/"])
1681 ("n``" ["n`"])
1682 ("n~~" ["n~"])
1683 ("o''" ["o'"])
1684 ("o--" ["o-"])
1685 ("o//" ["o/"])
1686 ("o::" ["o:"])
1687 ("o\"\"" ["o\""])
1688 ("o^^" ["o^"])
1689 ("o__" ["o_"])
1690 ("o``" ["o`"])
1691 ("o~~" ["o~"])
1692 ("r''" ["r'"])
1693 ("r``" ["r`"])
1694 ("r~~" ["r~"])
1695 ("s''" ["s'"])
1696 ("s//" ["s/"])
1697 ("s^^" ["s^"])
1698 ("s``" ["s`"])
1699 ("s~~" ["s~"])
1700 ("t//" ["t/"])
1701 ("t``" ["t`"])
1702 ("t~~" ["t~"])
1703 ("u''" ["u'"])
1704 ("u--" ["u-"])
1705 ("u::" ["u:"])
1706 ("u\"\"" ["u\""])
1707 ("u^^" ["u^"])
1708 ("u``" ["u`"])
1709 ("u~~" ["u~"])
1710 ("y''" ["y'"])
1711 ("y\"\"" ["y\""])
1712 ("z''" ["z'"])
1713 ("z//" ["z/"])
1714 ("z``" ["z`"])
1715 ("z~~" ["z~"])
1716 )
1717
1718 ;;; arch-tag: 722466a6-363d-431c-9161-879e16e2da5d
1719 ;;; latin-alt.el ends here