prosper のtex ファイルをコンパイルするシェルスクリプト
#!/bin/sh
if platex $1.tex; then
platex $1.tex
dvips $1.dvi
ps2pdf $1.ps
else
echo "failed to compile"
fi
myproscomp という名前で保存
$myproscomp presen
#presen.tex というファイルをコンパイルする場合。
Linux&UNIX Shellプログラミング
—Bourneシェル徹底攻略
私a2cのプログラミングに関するメモです。 プログラミング以外の情報は 「a2cのプログラミング以外」 http://unprog-a2c.blogspot.com/ をどうぞ
#!/bin/sh
if platex $1.tex; then
platex $1.tex
dvips $1.dvi
ps2pdf $1.ps
else
echo "failed to compile"
fi
0 Comments:
Post a Comment
<< Home