11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# Copyright (c) P.J.Gawthrop, 1996.
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.1 1997/05/17 13:55:42 peterg
## Initial revision
##
# Revision 1.2 1997/04/23 10:06:51 peterg
# Put output in the correct file!
#
# Revision 1.1 1997/04/23 10:03:41 peterg
|
>
>
>
|
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# Copyright (c) P.J.Gawthrop, 1996.
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.1 2000/12/27 15:53:42 peterg
## Initial revision
##
## Revision 1.1 1997/05/17 13:55:42 peterg
## Initial revision
##
# Revision 1.2 1997/04/23 10:06:51 peterg
# Put output in the correct file!
#
# Revision 1.1 1997/04/23 10:03:41 peterg
|
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
if [ "$documenttype" = "book" ]; then
cat <<EOF >> $filename
\makeindex
EOF
fi
cp -v $MTTPATH/trans/*.sty .
cat >> $filename <<EOF
\usepackage{mtt_$ps}
EOF
cat <<EOF >> $filename
\begin{document}
\maketitle
EOF
if [ "$documenttype" = "book" ]||[ "$documenttype" = "article" ]; then
|
>
|
|
|
|
>
>
>
|
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
|
if [ "$documenttype" = "book" ]; then
cat <<EOF >> $filename
\makeindex
EOF
fi
##cp -v $MTTPATH/trans/*.sty .
##cat >> $filename <<EOF
##\usepackage{mtt_$ps}
##EOF
## Explicitly include style files - avoids latex2html problem
cat $MTTPATH/trans/mtt.sty $MTTPATH/trans/mtt_$ps.sty >> $filename
cat <<EOF >> $filename
\begin{document}
\maketitle
EOF
if [ "$documenttype" = "book" ]||[ "$documenttype" = "article" ]; then
|