10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Copyright (c) P.J.Gawthrop 1998
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.8 1999/02/17 21:42:19 peterg
## Replaced print by printf to avoid extra nl in paragraph command.
##
## Revision 1.7 1998/07/27 12:56:26 peterg
## Splits up | separated expressions.
##
## Revision 1.6 1998/07/27 10:56:31 peterg
|
>
>
>
|
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# Copyright (c) P.J.Gawthrop 1998
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.9 2000/11/16 13:11:06 peterg
## Included PAR and UNITS declarations
##
## Revision 1.8 1999/02/17 21:42:19 peterg
## Replaced print by printf to avoid extra nl in paragraph command.
##
## Revision 1.7 1998/07/27 12:56:26 peterg
## Splits up | separated expressions.
##
## Revision 1.6 1998/07/27 10:56:31 peterg
|
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
|
}
END{if (NR==0) print "\\item This component has no UNITs declarations"
}' >> $1_lbl.tex
cat <<EOF >> $1_lbl.tex
\end{description}
EOF
|
|
>
>
>
>
>
>
>
>
|
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
|
}
END{if (NR==0) print "\\item This component has no UNITs declarations"
}' >> $1_lbl.tex
cat <<EOF >> $1_lbl.tex
\end{description}
EOF
# Write the actual lbl file
cat >> $1_lbl.tex <<EOF
\subsubsection*{The label file: $1\_lbl.txt}
\begin{verbatim}
EOF
cat $1_lbl.txt >> $1_lbl.tex
cat >> $1_lbl.tex <<EOF
\end{verbatim}
EOF
|