File mtt/bin/trans/makedesc artifact 3172bb98c8 part of check-in a8cce33cfa


#!/bin/sh

     ###################################### 
     ##### Model Transformation Tools #####
     ######################################

# Bourne shell script: maketex
# Makes template for (TeX) system description.

# P.J.Gawthrop August 1997
# Copyright (c) P.J.Gawthrop, 1997.

###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.4  1999/03/03 01:07:27  peterg
## Label the figure correctely,
##
## Revision 1.3  1998/07/22 08:58:51  peterg
## Corrected spelling.
##
## Revision 1.2  1997/05/21 10:00:51  peterg
## Tidied up.
##
## Revision 1.1  1997/05/21 09:19:27  peterg
## Initial revision
##
###############################################################

#Inform user
echo Creating $1_desc.tex

echo '% -*-latex-*- Put EMACS into LaTeX-mode' > $1_desc.tex
echo "% Verbal description for system $1 ($1_desc.tex)" >> $1_desc.tex
echo "% Generated by MTT on" `date`. >> $1_desc.tex                  	   
cat $MTTPATH/trans/m/rcs_header.txt  >> $1_desc.tex

cat<<EOF >> $1_desc.tex
The acausal bond graph of system \textbf{$1} is
displayed in Figure \Ref{fig:$1_abg.ps}  
EOF

if [ -e "$1_pic.fig" ]; then
cat<<EOF >> $1_desc.tex
and the schematic diagram in Figure \Ref{fig:$1_pic.ps}
EOF
fi
   
cat<<EOF >> $1_desc.tex
.
The label file is listed in Section \Ref{sec:$1_lbl} and the
subsystems are listed in Section \Ref{sec:$1_sub}.
EOF

MTT: Model Transformation Tools
GitHub | SourceHut | Sourceforge | Fossil RSS ]