blob: e81a925f31e9c5439757d4ce86148f39d61c6676 (
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
|
% xu-rohyph.tex
% Wrapper for XeTeX to read rohyph.tex
% Jonathan Kew, 2006-08-17
% Public domain
\begingroup
\let\INPUT=\input
\expandafter\ifx\csname XeTeXrevision\endcsname\relax
\else
% rohyph.tex uses ^^xx for T1 characters;
% redefine them to access the required Unicode characters
\input xu-t1.tex
% and disable \input so that it won't read cathyph.tex
\def\input #1 {}
% allow hyphen in patterns
\lccode`\-=`\-
\fi
\INPUT rohyph.tex
\endgroup
\endinput
|