blob: ada4e484fed0bcb0d7cf50ecd834472d04f0ce17 (
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
91
92
93
94
95
96
97
98
|
%%
%% This is file `childdoc.def',
%% generated with the docstrip utility.
%%
%% The original source files were:
%%
%% childdoc.dtx (with options: `package')
%%
%% Copyright (C) 2017 Niklas Beisert
%%
%% 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.
%%
\ifdefined\childdocmain\endinput\fi
\ProvidesFile{childdoc.def}[2017/05/21 v1.5 child document driver]
\newif\ifchilddoc
\edef\childdocname{\scantokens\expandafter{\jobname\noexpand}}
\newcommand{\childdocmain}[1]
{
\def\childdocmain##1{\endinput}
\def\childdocof##1{}
\begingroup
\def\childdoctmp{#1}
\ifx\childdocname\childdoctmp
\def\childdoctmp{\childdocfalse}
\else
\def\childdoctmp{\childdoctrue}
\fi
\expandafter
\endgroup
\childdoctmp
\ifchilddoc
\includeonly{\childdocname}
\def\jobname{#1}
\fi
}
\newcommand{\childdoc}{\childdocmain}
\newcommand{\childdocof}[1]
{
\input{#1}
}
\newcommand{\childdocforward}[2][]
{
\def\jobname{#2}
\def\childdocname{#2}
\begingroup
\def\childdoctmp{#1}
\def\childdocempty{}
\ifx\childdoctmp\childdocempty
\def\childdoctmp{\input{#2}}
\else
\def\childdoctmp{\input{#1}}
\fi
\expandafter
\endgroup
\childdoctmp
\endinput
}
\newcommand{\childdocforwardprefix}[3][]
{
\begingroup
\def\childdocextract #2##1~~~{\def\childdoctmp{\childdocforward[#1]{#3##1}}}
\expandafter\childdocextract\childdocname~~~
\expandafter
\endgroup
\childdoctmp
}
\newcommand{\childdocredirect}[2][]
{
\begingroup
\def\childdoctmp{#1}
\def\childdocempty{}
\ifx\childdoctmp\childdocempty
\def\childdoctmp{\childdocforward{#2}}
\else
\def\childdoctmp{\childdocforwardprefix{#1}{#2}}
\fi
\expandafter
\endgroup
\childdoctmp
}
\endinput
%%
%% End of file `childdoc.def'.
|