blob: 1cd6de7e1f6daa304473dd876d55dd0022322403 (
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
|
#!/usr/bin/env texlua
-- splitindex.tlu
-- Copyright (c) Markus Kohm, 2013
--
-- $Id: splitindex.tlu 4 2016-02-18 10:13:32Z mjk $
--
-- This file is part of the SplitIndex bundle.
--
-- This work may be distributed and/or modified under the conditions of
-- the LaTeX Project Public License, version 1.3c of the license.
-- The latest version of this license is in
-- http://www.latex-project.org/lppl.txt
-- and version 1.3c or later is part of all distributions of LaTeX
-- version 2005/12/01 or later and of this work.
--
-- This work has the LPPL maintenance status "author-maintained".
--
-- The Current Maintainer and author of this work is Markus Kohm.
--
-- The list of all files belongig to the SplitIndex bundle is given in
-- in the file `manifest.txt'. Files generated by means of unpacking the
-- distribution (using, for example, the docstrip program) or by means
-- of compiling them from a source file, for example, from splitindex.c
-- or splitindex.java may be distributed at the distributor's discretion.
-- However if they are distributed then a copy of the SplitIndex bundle
-- must be distributed together with them.
--
-- The list of derived (unpacked or compiled) files belongig to the
-- distribution and covered by LPPL is defined by the unpacking scripts
-- (with extension .ins) and the installation script (with name
-- install.sh) which are part of the distribution.
--
-- Two often ignorred clauses from LPPL 1.3c you should not ignore:
-- ----------------------------------------------------------------
-- 2. You may distribute a complete, unmodified copy of the Work as you
-- received it. Distribution of only part of the Work is considered
-- modification of the Work, and no right to distribute such a Derived
-- Work may be assumed under the terms of this clause.
-- 3. You may distribute a Compiled Work that has been generated from a
-- complete, unmodified copy of the Work as distributed under Clause 2
-- above, as long as that Compiled Work is distributed in such a way that
-- the recipients may install the Compiled Work on their system exactly
-- as it would have been installed if they generated a Compiled Work
-- directly from the Work.
kpse.set_program_name(arg[-1],'splitindex')
require('splitindex.splitindex_main')
--
-- End of file `splitindex.tlu'
|