blob: d85f22d798f00ba244a573dec2174a2f2f58d7f1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
;; Finnish LaTeX support.
;;
;; This file contains some rules to process TeX-letters with xindy.
;;
;; We first map them to the ISO-Latin counterpart and then use the
;; mappings in one of the two other modules to map them to the actual
;; position.
(require "tex/inputenc/latin1.xdy")
;; These are not in the inputenc stuff:
(merge-rule "\aa" "å" :string)
(merge-rule "\AA" "Å" :string)
(merge-rule "\ss" "ß" :string)
;; End
|