Overview
Comment: | Set to monochrome (not colour). This gives clearer plots. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
455803c9a5d44d32771172d304552036 |
User & Date: | gawthrop@users.sourceforge.net on 1997-12-07 18:45:44 |
Other Links: | branch diff | manifest | tags |
Context
1997-12-07
| ||
20:10:36 |
Fixed bugs with reprots and distinguish between book, article and section reports. check-in: 0c32a773fd user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
18:45:44 | Set to monochrome (not colour). This gives clearer plots. check-in: 455803c9a5 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
12:14:43 | Hnadles book, article and section reports seperately check-in: 1728c47ac4 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/gdat2ps from [92009ed6d6] to [de49bc31ff].
︙ | ︙ | |||
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.6 1996/08/16 14:51:21 peter # Put in some cosmetic postscript options. # ## Revision 1.5 1996/08/15 09:37:58 peter ## Parameters in title. ## ## Revision 1.4 1996/08/14 09:21:17 peter | > > > | 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.7 1996/08/26 13:04:43 peterg ## Changed $() to ``. ## # Revision 1.6 1996/08/16 14:51:21 peter # Put in some cosmetic postscript options. # ## Revision 1.5 1996/08/15 09:37:58 peter ## Parameters in title. ## ## Revision 1.4 1996/08/14 09:21:17 peter |
︙ | ︙ | |||
34 35 36 37 38 39 40 | ## Initial revision ## ############################################################### echo Creating $1.ps gnuplot << EOF | | | 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 | ## Initial revision ## ############################################################### echo Creating $1.ps gnuplot << EOF set terminal postscript eps monochrome "Times-Roman" 24 set size 1.5,1.5 set output '$1.ps' set grid set title "`date` $2 " plot '$1.gdat' with lines exit EOF |