11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
###############################################################
## 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
|
>
>
>
|
>
|
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.1 1998/03/03 08:35:50 peterg
## Initial revision
##
###############################################################
system=$1
# Inform user
echo Creating $system.dvi
#Run latex thrice
latex $system.doc > doc2dvi.log
latex $system.doc >> doc2dvi.log
latex $system.doc >> doc2dvi.log
# Make sure transformation succeeeds
exit 0
|