18
0

Initial import into BZR of my TeX templates.

This commit is contained in:
<mako@atdot.cc> 1142811766 -0500
-
commit 94507c62c3
2 changed files with 66 additions and 0 deletions

27
Makefile Normal file
View File

@@ -0,0 +1,27 @@
all: dvi
dvi: text.tex
cp text.tex backup.tex
latex text.tex
latex text.tex
latex text.tex
pdf: dvi
pdflatex text.tex
viewpdf: pdf
evince text.pdf
ps: dvi
dvips -f < text.dvi > text.ps
final: dvi
dvips -f < text.dvi > final.ps
spell:
aspell -c -t --tex-check-comments -b text.tex
clean:
cp text.tex backup.tex
rm -f text.{blg,bbl,aux,log,dvi,toc,tex.bak,txt,tex~,ps,pdf} warnings