blob: f079bc986485038a07af4a92d3cdb2f908fe39c0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
;; 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/cp1252.xdy")
(merge-rule "\aa" "å" :string)
(merge-rule "\AA" "Å" :string)
(merge-rule "\ss" "ß" :string)
;; End
|