blob: 295e899948bc1edf2b5d2189c5c66d37652e618c (
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
% Copyright 2000-2005 Werner Lemberg <wl@gnu.org>.
% This file is part of vntex. License: LPPL, version 1.3 or newer,
% according to http://www.latex-project.org/lppl.txt
%
%
% This is the file dblaccnt.tex to be used with plain TeX; it is a wrapper
% file for dblaccnt.sty.
%
% Since it uses LaTeX's font encoding mechanism, it needs the `plnfss' and
% `plainenc' packages:
%
% \input plnfss
% \input plainenc
% \input dblaccnt
%
% \fontencoding{...}
%
% ...
%
%
% History
%
% 1.0 2000/01/27
%
% Initial release.
%
% 1.1 2005/04/21
%
% Add copyright message and history.
% Minor documentation clean-up.
%\ProvidesFile{dblaccnt.tex}[2005/04/21 v1.1 double accent support for plain TeX]
\makeatletter
\input dblaccnt.sty
% We repeat the definitions in plain.def of the Babel package to use the
% new macros from dblaccnt.sty
\DeclareTextAccent{\'}{OT1}{19}
\DeclareTextAccent{\`}{OT1}{18}
\let\@acci\'
\let\@accii\`
\let\@acciii\=
\makeatother
\endinput
% end of dblaccnt.tex
|