Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to create a batch file to compile LaTeX documents. I've not found a solution to get it to compile every .tex file in the folder of the batch file. Is that easily accomplished?

SET STR=document

pdflatex "%STR%.tex"
bibtex "%STR%.aux"
pdflatex "%STR%.tex"
pdflatex "%STR%.tex"

DEL "%STR%.log"
DEL "%STR%.toc"
DEL "%STR%.aux"
DEL "%STR%.out"
DEL "%STR%.blg"
DEL "%STR%.bbl"

"%STR%.pdf"
share|improve this question
1  
OSX does not use DOS's batch files. It uses bash scripting. tldp.org/HOWTO/Bash-Prog-Intro-HOWTO.html – Almo Feb 18 at 18:00
1  
You need for %f in (*.tex) do .... – David Heffernan Feb 18 at 18:26

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.