home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Source Code 1992 March
/
Source_Code_CD-ROM_Walnut_Creek_March_1992.iso
/
usenet
/
altsrcs
/
2
/
2990
/
plotskel
< prev
next >
Wrap
Text File
|
1991-03-05
|
436b
|
18 lines
#!/bin/csh -f
#
# Make a skeleton version of a gnuplot or gnutex plot.tex file
# This can be used in the same way, and takes up the same amount of
# space on the page, but will run through latex MUCH faster. Good
# for quick drafts.
#
# Usage:
# plotskel plot.tex
# Standard output is skeleton file
if ($#argv != 1) then
echo usage: plotskel plot.tex
exit 1
endif
sed -n -e '1,/begin{picture}/p' -e '/end{picture}/,$p' $1