blob: 4962f090cb6b515e01c27bf813ba65f37195b9bc (
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
|
%%
%% This is file `xinitials.sig',
%% generated with the docstrip utility.
%%
%% The original source files were:
%%
%% xinitials.dtx (with options: `signature')
%%
%%
%% $Header: /usr3/users/latex3/design/consolidation/CURRENT/RCS/xinitials.dtx,v 1.7 2000/01/28 13:39:56 latex3 Exp $
%%
%% (C) Copyright 1999-2000 Frank Mittelbach
%% All rights reserved.
%%
%% Not for general distribution. In its present form it is not allowed
%% to put this package onto CD or an archive without consulting the
%% the authors.
%%
\ProvidesFile{xinitials.sig}
[2000/01/28 v0.1h templates for initials]
\RequirePackage{xinitials}
\RequirePackage{xparse}
\IgnoreWhiteSpace
\DeclareDocumentCommand \Initial {omo}
{
\IfExistsInstanceTF{initial}{#2}
{\UseInstance{initial}{#2}}
{\UseInstance{initial}{default}}
{#1}{#2}{#3}
}
\DeclareDocumentCommand \ExtendedInitial {so omo}
{
\IfBooleanTF{#1}
{\UseTemplate{initial}{std}{#2}{#3}{#4}{#5}}
{\IfExistsInstanceTF{initial}{#2}
{\UseInstance{initial}{#2}}
{\UseInstance{initial}{default}}
{#3}{#4}{#5}
}
}
\endinput
%%
%% End of file `xinitials.sig'.
|