blob: 676f2b2ed94152c7e3d1e1affcec7fdd1976fe0b (
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
|
%% 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 capital letter "U" with "V",
%% and latin small letter "v" with "u" according to the orthography
%% used in most classical text editions, where U and V are treated
%% as the same letter.
input: 2;
output: 2;
expressions:
% Latin letters
`U' => `V';
`v' => `u';
% all other symbols, including Unicode characters
. => \1;
|