Advertisement
Guest User

Untitled

a guest
Sep 17th, 2017
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Make 0.46 KB | None | 0 0
  1. LATEX_CMD = pdflatex --synctex=1 -interaction=nonstopmode thesis.tex
  2. cropped := $(patsubst figures/%.pdf,figures/cropped/%.pdf, $(wildcard figures/*.pdf))
  3.  
  4. $(cropped): figures/cropped/%.pdf: figures/%.pdf
  5.     pdfcrop --margin '1 2 1 2' $< $@
  6.  
  7. thesis.pdf: thesis.tex chapters/*.tex figures/* literature/* $(cropped)
  8.     $(LATEX_CMD)
  9.     makeglossaries thesis
  10.     bibtex thesis
  11.     $(LATEX_CMD)
  12.     $(LATEX_CMD)
  13.  
  14. all: thesis.pdf
  15.  
  16. clean:
  17.     rm -f thesis.pdf
  18.  
  19. .PHONY = clean
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement