aboutsummaryrefslogtreecommitdiffstats
path: root/bin/tex2pdf
diff options
context:
space:
mode:
authorDavid Runge <david.runge@frqrec.com>2013-12-31 14:19:23 +0100
committerDavid Runge <david.runge@frqrec.com>2013-12-31 14:19:23 +0100
commit931c8711d64b50c240c5cf1079480094dbde9ff1 (patch)
tree330d282d31afdf14412a60569d87e86603bcae9b /bin/tex2pdf
parentd9fd1d6971d8b3d71a0f1556a3b5d29ea6641ac2 (diff)
downloaddotfiles-931c8711d64b50c240c5cf1079480094dbde9ff1.tar.gz
dotfiles-931c8711d64b50c240c5cf1079480094dbde9ff1.tar.bz2
dotfiles-931c8711d64b50c240c5cf1079480094dbde9ff1.tar.xz
dotfiles-931c8711d64b50c240c5cf1079480094dbde9ff1.zip
Adding new scripts from /usr/local/bin and updating backup-profiles and autostart
Diffstat (limited to 'bin/tex2pdf')
-rwxr-xr-xbin/tex2pdf24
1 files changed, 24 insertions, 0 deletions
diff --git a/bin/tex2pdf b/bin/tex2pdf
new file mode 100755
index 0000000..ad53029
--- /dev/null
+++ b/bin/tex2pdf
@@ -0,0 +1,24 @@
+#!/bin/bash
+echo "tex2pdf called with $1.tex">~/.tex2pdf.log
+echo "#####################################################">>~/.tex2pdf.log
+echo "################## pdflatex, run #1 #################">>~/.tex2pdf.log
+echo "#####################################################">>~/.tex2pdf.log
+pdflatex -interaction=nonstopmode $1.tex>>~/.tex2pdf.log
+echo "bibtex:">>~/.tex2pdf.log
+bibtex $1.aux>>~/.tex2pdf.log
+echo "#####################################################">>~/.tex2pdf.log
+echo "################## pdflatex, run #2 #################">>~/.tex2pdf.log
+echo "#####################################################">>~/.tex2pdf.log
+pdflatex -interaction=nonstopmode $1.tex>>~/.tex2pdf.log
+echo "#####################################################">>~/.tex2pdf.log
+echo "################## pdflatex, run #3 #################">>~/.tex2pdf.log
+echo "#####################################################">>~/.tex2pdf.log
+pdflatex -interaction=nonstopmode $1.tex>>~/.tex2pdf.log
+echo "#####################################################">>~/.tex2pdf.log
+echo "Launching evince with $1.pdf.">>~/.tex2pdf.log
+evince $1.pdf &
+echo "#####################################################">>~/.tex2pdf.log
+echo "Removing aux,bbl,blg,dvi,lof,log,lot,nav,out,snm,toc.">>~/.tex2pdf.log
+echo "Current directory: $(pwd) and children of depth 1.">>~/.tex2pdf.log
+rm -f $1.{aux,bbl,blg,dvi,lof,log,lot,nav,out,snm,toc}
+rm -f */*.{aux,bbl,blg,dvi,lof,log,lot,nav,out,snm,toc}