blob: 6b8fa81b904995c02e74e0cf576d80a6d74b5ba5 (
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
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
|
%
% ltj-latex.sty
%
%! これは外から読まれない
%% Avoid multiple loading.
\csname luatexjalatexLoaded\endcsname
\edef\ltj@latex@AtEnd{%
\endlinechar=\the\endlinechar
\relax}
\endlinechar\m@ne%
\def\luatexjalatexLoaded{\endinput}
\NeedsTeXFormat{LaTeX2e}
\ProvidesPackage{ltj-latex}[2018/08/24 LaTeX support of LuaTeX-ja]
% cleanup at end of the document
%\let\ltj@@orig@end=\@@end
%\protected\def\@@end{%
% \directlua{luatexja.ext_cleanup()}\ltj@@orig@end}
\endlinechar=13
%%% patch for LaTeX
\usepackage{lltjfont}
\usepackage{lltjdefs}
\usepackage{lltjcore}
%%% patching commands
\RequirePackage{filehook}
\def\ltj@pkgpatch@im#1{%
\@ifnextchar[{\ltj@pkgpatch@im@{#1}}{\ltj@pkgpatch@im@{#1}[lltjp-#1]}}%]
\def\ltj@pkgpatch@im@#1[#2]{%
\AtEndOfPackageFile*{#1}{%
\@ifpackageloaded{#2}{}{%
\@namedef{ver@#2.\@pkgextension}{0000/00/00}%dummy
\if\catcode`@=11\let\ltj@temp\relax\else
\edef\ltj@temp{\noexpand\catcode`@=\the\catcode`@\relax}\makeatletter
\fi
\@@input{#2.\@pkgextension}\ltj@temp
}%
}%
}
\def\ltj@pkgpatch#1{%
\@ifnextchar[{\ltj@pkgpatch@@{#1}}{\ltj@pkgpatch@@{#1}[lltjp-#1]}}%]
\def\ltj@pkgpatch@@#1[#2]{%
\gpreto\@begindocumenthook{%
\@ifpackageloaded{#1}{%
\@ifpackageloaded{#2}{}{\RequirePackage{#2}}%
}{}%
}%
}
%%% default parameters
\directlua{
local s = kpse.find_file('ltj-kinsoku.lua', 'tex')
luatexja.stack.charprop_stack_table[0] = s and dofile(s) or {}
}
\ltjsetparameter{kanjiskip=\z@ plus .4pt minus .5pt,
xkanjiskip=.25\zw plus 1pt minus 1pt,
autospacing, autoxspacing, jacharrange={-1},
yalbaselineshift=\z@, yjabaselineshift=\z@,
jcharwidowpenalty=500, differentjfm=paverage
}
\expandafter\let\csname JY3/mc/m/n/10\endcsname\relax
%%% patch for packages
\ltj@pkgpatch@im{listings}
\ltj@pkgpatch{xunicode} %% at \begin{document}
\ltj@pkgpatch@im{fontspec}
\ltj@pkgpatch{footmisc} %% at \begin{document}
\ltj@pkgpatch{tascmac}
\ltj@pkgpatch{ascmac}[lltjp-tascmac]
\ltj@pkgpatch@im{stfloats}
\ltj@pkgpatch{preview} %% at \begin{document}
% (preview package has delayed option)
\ltj@pkgpatch{array} %% at \begin{document}
\ltj@pkgpatch@im{unicode-math}
\ltj@pkgpatch@im{siunitx}
\RequirePackage{lltjp-geometry}
%%------------------ all done
\ltj@latex@AtEnd
\endinput
%% EOF
|