Overview
| Comment: | Reverted to tabular --- from supertabular |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | origin/master | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
0fcba34b14bf06e657ef6b822f2f94c3 |
| User & Date: | gawthrop@users.sourceforge.net on 1997-12-06 19:10:41.000 |
| Other Links: | branch diff | manifest | tags |
Context
|
1997-12-07
| ||
| 11:52:30 | Initial revision check-in: 87f02d7a38 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
|
1997-12-06
| ||
| 19:10:41 | Reverted to tabular --- from supertabular check-in: 0fcba34b14 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
| 18:54:53 |
Now tidies up after itself. Major modifications to do a rep on a directory -- creates a book with each example as a chapter. check-in: ca59e34de8 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/struc_txt2tex
from [1782aebe06]
to [d9744948f9].
1 2 3 4 5 6 7 8 |
#! /bin/sh
######################################
##### Model Transformation Tools #####
######################################
# Bourne shell script: struc_txt2tex
| | > > > | < | > > | > > > > > > > > > > | > > > | | < | | | | | 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 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 |
#! /bin/sh
######################################
##### Model Transformation Tools #####
######################################
# Bourne shell script: struc_txt2tex
# Structure file - text to TeX table conversion
# P.J.Gawthrop April 1997
# Copyright (c) P.J.Gawthrop, 1997.
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
# 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
# Initial revision
#
###############################################################
# Inform user
echo "Creating $1_struc.tex"
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 gawk
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}";
#
# print " \\tablehead{\\hline %";
# print " \\multicolumn{4}{|c|}{\\bf List of " what "s for system " SYSTEM " (continued)} \\\\";
# print " \\hline";
# print " & Component & System & Repetition \\\\";
# print " \\hline}";
#
# print " \\tabletail{\\hline}";
# print " \\begin{supertabular}{|l|l|l|l|}";
#}
function header(what){
print "\\begin{table}[htbp]";
print " \\begin{tabular}{|l|l|l|l|}"; print " \\hline";
print " & Component & System & Repetition \\\\";
print " \\hline";
}
function footer(what){
print " \\hline";
print " \\end{tabular}";
# print " \\caption{" what "}";
print "\\end{table}";
print " \\bigskip";
print " \\bigskip";
}
BEGIN{
Which=""
}
{
if ($1!=Which) {
if (Which!="") footer(Which);
header($1);
}
print $2, "&", $3,"&", $4, "&", $5, "\\\\";
Which = $1;
}
END{
footer(Which)
}
' SYSTEM=$1 >> $1_struc.tex 2>mtt_error.txt
# Now invoke the standard error handling.
mtt_error mtt_error.txt
|