|
Ronni Grapenthin - Tools (he / him / his) email: |
University of Alaska Fairbanks Geophysical Institute 2156 Koyukuk Drive Fairbanks, AK-99775 |
This is more of a tutorial than an actual tool. Two things are necessary to get a more instant LaTeX experience:
latex:
#!/bin/tcsh
while ( 1 > 0 )
pslatex $1
dvips -Ppdf ${1}.dvi -o ${1}.ps
ps2pdf ${1}.ps ${1}.pdf
sleep 10
end
or for pdflatex:
#!/bin/tcsh
while ( 1 > 0 )
pdflatex ${1}
sleep 10
end
Obviously either of these 'demons' is from the commandline called as something like: latex_demon your_document.tex.
They do the usual tex-document processing at the end of which they take a 10 second break before they continue the infinite
while loop. Of course, the pause interval could be parameterized as well.
| Last modified: August 20 2014 22:12.