fpc/docs/refex/make1tex
1998-03-25 11:26:49 +00:00

11 lines
264 B
Tcsh

#!/bin/csh
set texfile="all.tex"
echo '\documentclass{article}' >$texfile
echo '\usepackage{fpk}' >>$texfile
echo '\usepackage{a4}' >>$texfile
echo '\\begin{document}' >>$texfile
foreach f ( $* )
echo "\input{$f}" >>$texfile
end
echo "\end{document}" >>$texfile