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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
|
%%
%% This is file `luatex-loader.sty',
%% generated with the docstrip utility.
%%
%% The original source files were:
%%
%% luatex.dtx (with options: `loader')
%%
%% This is a generated file.
%%
%% Copyright (C) 2007 by Heiko Oberdiek <oberdiek@uni-freiburg.de>
%%
%% This work may be distributed and/or modified under the
%% conditions of the LaTeX Project Public License, either
%% version 1.3 of this license or (at your option) any later
%% version. The latest version of this license is in
%% http://www.latex-project.org/lppl.txt
%% and version 1.3 or later is part of all distributions of
%% LaTeX version 2005/12/01 or later.
%%
%% This work has the LPPL maintenance status "maintained".
%%
%% This Current Maintainer of this work is Heiko Oberdiek.
%%
%% This work consists of the main source file luatex.dtx
%% and the derived files
%% luatex.sty, luatex.pdf, luatex.ins, luatex.drv, luatex-loader.sty,
%% luatex-test1.tex, luatex-test2.tex, luatex-test3.tex,
%% luatex-test4.tex, luatex-test5.tex, oberdiek.luatex.lua.
%%
\begingroup
\catcode44 12 % ,
\catcode45 12 % -
\catcode46 12 % .
\catcode58 12 % :
\catcode64 11 % @
\expandafter\let\expandafter\x\csname ver@luatex-loader.sty\endcsname
\ifcase 0%
\ifx\x\relax % plain
\else
\ifx\x\empty % LaTeX
\else
1%
\fi
\fi
\else
\catcode35 6 % #
\catcode123 1 % {
\catcode125 2 % }
\expandafter\ifx\csname PackageInfo\endcsname\relax
\def\x#1#2{%
\immediate\write-1{Package #1 Info: #2.}%
}%
\else
\def\x#1#2{\PackageInfo{#1}{#2, stopped}}%
\fi
\x{luatex-loader}{The package is already loaded}%
\endgroup
\expandafter\endinput
\fi
\endgroup
\begingroup
\catcode35 6 % #
\catcode40 12 % (
\catcode41 12 % )
\catcode44 12 % ,
\catcode45 12 % -
\catcode46 12 % .
\catcode47 12 % /
\catcode58 12 % :
\catcode64 11 % @
\catcode123 1 % {
\catcode125 2 % }
\expandafter\ifx\csname ProvidesPackage\endcsname\relax
\def\x#1#2#3[#4]{\endgroup
\immediate\write-1{Package: #3 #4}%
\xdef#1{#4}%
}%
\else
\def\x#1#2[#3]{\endgroup
#2[{#3}]%
\ifx#1\relax
\xdef#1{#3}%
\fi
}%
\fi
\expandafter\x\csname ver@luatex-loader.sty\endcsname
\ProvidesPackage{luatex-loader}%
[2007/12/12 v0.1 Lua module loader (HO)]
\begingroup
\catcode10 12 % ^^J
\catcode34 12 % "
\catcode39 12 % '
\catcode40 12 % (
\catcode41 12 % )
\catcode44 12 % ,
\catcode46 12 % .
\catcode61 12 % =
\catcode95 12 % _ (other!)
\catcode96 12 % `
\endlinechar=10 %
\directlua0{%
do
local script = "oberdiek.luatex.lua"
local file = kpse.find_file(script, "texmfscripts")
if file then
texio.write_nl("(" .. file .. ")")
dofile(file)
else
error("File `" .. script .. "' not found")
end
end
}%
\endgroup%
\endinput
%%
%% End of file `luatex-loader.sty'.
|