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
|
%%
%% This file will generate fast loadable files and documentation
%% driver files from the doc files in this package when run through
%% LaTeX or TeX.
%%
%% Copyright (c) 2004 Mike Kaufmann, all rights reserved
%%
%% This program is provided under the terms of the
%% LaTeX Project Public License distributed from CTAN
%% archives in directory macros/latex/base/lppl.txt.
%%
%% Author: Mike Kaufmann
%% Mike.Kaufmann@ei.fh-giessen.de
%%
%% --------------- start of docstrip commands ------------------
%%
\input docstrip.tex
% some macros for conditional generation of example files
\newif\ifaskforexample
\newif\ifgenerateexample
\generateexampletrue
\askforexampletrue
% \generateexample \askforexample then
% true false generate example
% true true ask and generate only if answer is y/yes
% false don' care do not generate
\def\generateExample#1{%
\ifgenerateexample
\ifaskforexample
\Ask\answer{^^JThere is an example file in \jobname.dtx.^^JGenerate it? [y/n]}
\ifx\answer\y \generate{#1}\else
\ifx\answer\yes \generate{#1}\fi\fi
\else\generate{#1}\fi\fi}
\preamble
Copyright (c) 2004 Mike Kaufmann, all rights reserved
This program is provided under the terms of the
LaTeX Project Public License distributed from CTAN
archives in directory macros/latex/base/lppl.txt.
Author: Mike Kaufmann
Mike.Kaufmann@ei.fh-giessen.de
\endpreamble
\generate{\file{lcd.sty}{\from{lcd.dtx}{package}}}
\generateExample{\file{example.tex}{\from{lcd.dtx}{example}}}
\Msg{***********************************************************}
\Msg{*}
\Msg{* To finish the installation you have to move the following}
\Msg{* file into a directory searched by TeX:}
\Msg{*}
\Msg{* \space\space lcd.sty}
\Msg{*}
\Msg{* To produce the documentation run the files ending with}
\Msg{* `.dtx' through LaTeX.}
\Msg{*}
\Msg{* Happy TeXing}
\Msg{***********************************************************}
\endbatchfile
|