Overview
Comment: | Fixed html output of figures |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
b44ef4c4afe6e04c2d1e6727bd3193fa |
User & Date: | gawthrop@users.sourceforge.net on 2003-05-09 09:46:46 |
Other Links: | branch diff | manifest | tags |
Context
2003-05-14
| ||
07:32:58 | Uses new ppp_lin (with extra args) check-in: 0c415bfa4e user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
2003-05-09
| ||
09:46:46 | Fixed html output of figures check-in: b44ef4c4af user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
2003-05-08
| ||
18:53:30 | New input format check-in: d5b5ecde7c user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/mtt from [873a3aeb91] to [a1669cf4b7].
︙ | ︙ | |||
13 14 15 16 17 18 19 20 21 22 23 24 25 26 | # Copyright (C) 2001 by Peter J. Gawthrop ############################################################### ## Version control history ############################################################### ## $Header$ ## $Log$ ## Revision 1.374 2003/04/17 20:57:27 geraint ## Added -sort option to allow direct generation of ode2odes.m using sese.m ## instead of ode/csex. ## ## "mtt -sort rc odeso view" works without Reduce installed!!! ## ## Revision 1.373 2003/04/17 20:07:32 geraint | > > > | 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | # Copyright (C) 2001 by Peter J. Gawthrop ############################################################### ## Version control history ############################################################### ## $Header$ ## $Log$ ## Revision 1.375 2003/05/08 18:42:52 gawthrop ## Generate pdf from ps (using hyperref package for links etc) ## ## Revision 1.374 2003/04/17 20:57:27 geraint ## Added -sort option to allow direct generation of ode2odes.m using sese.m ## instead of ode/csex. ## ## "mtt -sort rc odeso view" works without Reduce installed!!! ## ## Revision 1.373 2003/04/17 20:07:32 geraint |
︙ | ︙ | |||
3601 3602 3603 3604 3605 3606 3607 | $1_$2.$ps: $1_$2.doc doc2$ps $1_$2 "$documenttype" endif ifeq ($REPTYPE,tex) #Create html version of dvi file | | | 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 | $1_$2.$ps: $1_$2.doc doc2$ps $1_$2 "$documenttype" endif ifeq ($REPTYPE,tex) #Create html version of dvi file $1_$2.html: $1_$2.doc echo Creating $1_$2/$1_$2.html $LATEX2HTML $1_$2.doc>latex2html.log 2>latex2html.log endif #Default view ifeq ($REPTYPE,bg) $1_$2.view : $Subsystem_$2.pview |
︙ | ︙ |
Modified mttroot/mtt/bin/trans/makedoc from [577d894696] to [4df074a97b].
︙ | ︙ | |||
11 12 13 14 15 16 17 18 19 20 21 22 23 24 | # Copyright (c) P.J.Gawthrop, 1996. ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.1 1997/05/17 13:55:42 peterg ## Initial revision ## # Revision 1.2 1997/04/23 10:06:51 peterg # Put output in the correct file! # # Revision 1.1 1997/04/23 10:03:41 peterg | > > > | 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | # Copyright (c) P.J.Gawthrop, 1996. ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.1 2000/12/27 15:53:42 peterg ## Initial revision ## ## Revision 1.1 1997/05/17 13:55:42 peterg ## Initial revision ## # Revision 1.2 1997/04/23 10:06:51 peterg # Put output in the correct file! # # Revision 1.1 1997/04/23 10:03:41 peterg |
︙ | ︙ | |||
67 68 69 70 71 72 73 | if [ "$documenttype" = "book" ]; then cat <<EOF >> $filename \makeindex EOF fi | > | | | | > > > | 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 | if [ "$documenttype" = "book" ]; then cat <<EOF >> $filename \makeindex EOF fi ##cp -v $MTTPATH/trans/*.sty . ##cat >> $filename <<EOF ##\usepackage{mtt_$ps} ##EOF ## Explicitly include style files - avoids latex2html problem cat $MTTPATH/trans/mtt.sty $MTTPATH/trans/mtt_$ps.sty >> $filename cat <<EOF >> $filename \begin{document} \maketitle EOF if [ "$documenttype" = "book" ]||[ "$documenttype" = "article" ]; then |
︙ | ︙ |