Overview
Comment: | Initial revision |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
a2b34cf0888dcf8e6daabfdd5a1ce5af |
User & Date: | gawthrop@users.sourceforge.net on 1998-03-03 08:35:50 |
Other Links: | branch diff | manifest | tags |
Context
1998-03-03
| ||
09:02:46 | Replaced MTTEyx*MTTEdX + MTTEyu*MTTdu; term check-in: eae23f037b user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
08:35:50 | Initial revision check-in: a2b34cf088 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
1998-03-02
| ||
17:14:06 | Added simpar to list check-in: 6ad1c28105 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Added mttroot/mtt/bin/trans/doc2dvi version [f75215f301].
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 | #! /bin/sh ###################################### ##### Model Transformation Tools ##### ###################################### # Bourne shell script: doc2dvi # Converts doc file to dvi file # Copyright (c) P.J.Gawthrop 1998 ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ############################################################### system=$1 # Inform user echo Creating $system.dvi #Run latex twice latex $system.doc > doc2dvi.log latex $system.doc >> doc2dvi.log # Make sure transformation succeeeds exit 0 |