Overview
Comment: | Uses supertabular package |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
259ff488272e518b154cdbcd35b6278a |
User & Date: | gawthrop@users.sourceforge.net on 1997-04-15 11:18:49 |
Other Links: | branch diff | manifest | tags |
Context
1997-04-15
| ||
15:16:12 |
Added structure (_struc) files. Fixed prob with dvi2ps conversion -- removed .doc extension. check-in: e879f3db7b user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
11:18:49 | Uses supertabular package check-in: 259ff48827 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
11:17:58 | Uses supertabular for long tables. check-in: cabb19c27f user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/awk/tex2doc.awk from [845d02f4e3] to [49e98b86ec].
︙ | ︙ | |||
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | # Copyright (c) P.J.Gawthrop, 1996. ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ############################################################### BEGIN { split(ARGV[1],a,"_"); system_name = a[1]; split(a[2],b,"."); representation = b[1]; makefile = sprintf("%s_rep.make", system_name, representation); print "\\documentclass[12pt,a4paper]{article}"; printf("\\title{System %s, representation %s}\n", \ system_name, representation) print "\\author{Generated by MTT}"; print " \\usepackage{epsfig}"; | > > > | | 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 | # Copyright (c) P.J.Gawthrop, 1996. ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ # Revision 1.1 1996/08/18 20:00:10 peter # Initial revision # ############################################################### BEGIN { split(ARGV[1],a,"_"); system_name = a[1]; split(a[2],b,"."); representation = b[1]; makefile = sprintf("%s_rep.make", system_name, representation); print "\\documentclass[12pt,a4paper]{article}"; printf("\\title{System %s, representation %s}\n", \ system_name, representation) print "\\author{Generated by MTT}"; print " \\usepackage{epsfig}"; print " \\usepackage{supertabular}"; print "\\begin{document}"; print " \\maketitle"; printf(" \\input{%s_%s}\n", system_name, representation); print "\\end{document}" } |