SQLITE_NOTICE(283): recovered 5 frames from WAL file /data/mtt.fossil-wal
File mttroot/mtt/bin/trans/awk/tex2doc.awk artifact 49e98b86ec part of check-in 773866be10
###################################### ##### Model Transformation Tools ##### ###################################### # gawk script: tex2doc # Encapsulates a tex file in a document. # P.J.Gawthrop August 1996 # 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}" }