11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# Copyright (c) P.J.Gawthrop, 1997.
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
# Revision 1.3 1997/12/06 19:10:41 peterg
# Reverted to tabular --- from supertabular
#
# Revision 1.2 1997/04/15 11:17:58 peterg
# Uses supertabular for long tables.
#
# Revision 1.1 1997/04/15 09:49:04 peterg
|
>
>
>
|
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# Copyright (c) P.J.Gawthrop, 1997.
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.4 2000/12/28 12:46:59 peterg
## Put under RCS
##
# Revision 1.3 1997/12/06 19:10:41 peterg
# Reverted to tabular --- from supertabular
#
# Revision 1.2 1997/04/15 11:17:58 peterg
# Uses supertabular for long tables.
#
# Revision 1.1 1997/04/15 09:49:04 peterg
|
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
rm -f mtt_error
#Write some file headers
echo "%% Structure file ($1_struc.txt)" > $1_struc.tex
echo "%% Generated by MTT at `date`" >> $1_struc.tex
# This is the main transformation using awk
sed 's/_/\\_/g' < $1_struc.txt | awk '
function header(what){
print " \\centering";
print " \\tablefirsthead{\\hline %";
print " \\multicolumn{4}{|c|}{\\bf List of " what "s for system " SYSTEM "} \\\\";
print " \\hline";
print " & Component & System & Repetition \\\\";
print " \\hline}";
|
|
|
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
rm -f mtt_error
#Write some file headers
echo "%% Structure file ($1_struc.txt)" > $1_struc.tex
echo "%% Generated by MTT at `date`" >> $1_struc.tex
# This is the main transformation using awk
sed 's/_/\\_/g' < $1_struc.txt | gawk '
function header(what){
print " \\centering";
print " \\tablefirsthead{\\hline %";
print " \\multicolumn{4}{|c|}{\\bf List of " what "s for system " SYSTEM "} \\\\";
print " \\hline";
print " & Component & System & Repetition \\\\";
print " \\hline}";
|