blob: 0be476ca21bece7ed72e50aab5bcadf5691e5e2a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
%% This file is part of the ANTOMEGA project version 0.8
%% -----------------------------------------------------
%%
%% It may be distributed under the terms of the LaTeX Project Public
%% License, as described in lppl.txt in the base LaTeX distribution.
%% Either version 1.0 or, at your option, any later version.
%% Copyright (C) 2005 by Alexej Kryukov
%% Please report errors to: A.M. Kryukov <basileia@yandex.ru>
%% This file is used to replace Latin digraphs with ligatures, as
%% in some 18th century and earlier editions.
input: 2;
output: 2;
expressions:
% Latin digraphs
`A'`E' => @"00C6;
`A'`e' => @"00C6;
`a'`e' => @"00E6;
`O'`E' => @"0152;
`O'`e' => @"0152;
`o'`e' => @"0153;
% all other symbols, including Unicode characters
. => \1;
|