From 6ea3b5f2b22e3a0971df15f5118423b03e60e8f5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Frederik=20Hangh=C3=B8j=20Iversen?= Date: Fri, 2 Feb 2018 15:34:35 +0100 Subject: [PATCH] Makefile for latex --- proposal/Makefile | 46 +++++++++++++++++++++++++++++++++++++++++++++ proposal/macros.tex | 2 +- 2 files changed, 47 insertions(+), 1 deletion(-) create mode 100644 proposal/Makefile diff --git a/proposal/Makefile b/proposal/Makefile new file mode 100644 index 0000000..8561a59 --- /dev/null +++ b/proposal/Makefile @@ -0,0 +1,46 @@ +# Latex Makefile using latexmk +# Modified by Dogukan Cagatay +# Originally from : http://tex.stackexchange.com/a/40759 +# +# Change only the variable below to the name of the main tex file. +PROJNAME=proposal + +# You want latexmk to *always* run, because make does not have all the info. +# Also, include non-file targets in .PHONY so they are run regardless of any +# file of the given name existing. +.PHONY: $(PROJNAME).pdf all clean + +# The first rule in a Makefile is the one executed by default ("make"). It +# should always be the "all" rule, so that "make" and "make all" are identical. +all: $(PROJNAME).pdf + +# CUSTOM BUILD RULES + +# In case you didn't know, '$@' is a variable holding the name of the target, +# and '$<' is a variable holding the (first) dependency of a rule. +# "raw2tex" and "dat2tex" are just placeholders for whatever custom steps +# you might have. + +%.tex: %.raw + ./raw2tex $< > $@ + +%.tex: %.dat + ./dat2tex $< > $@ + +# MAIN LATEXMK RULE + +# -pdf tells latexmk to generate PDF directly (instead of DVI). +# -pdflatex="" tells latexmk to call a specific backend with specific options. +# -use-make tells latexmk to call make for generating missing files. + +# -interactive=nonstopmode keeps the pdflatex backend from stopping at a +# missing file reference and interactively asking you for an alternative. + +$(PROJNAME).pdf: $(PROJNAME).tex + latexmk -pdf -pdflatex="pdflatex -interactive=nonstopmode" -use-make $< + +cleanall: + latexmk -C + +clean: + latexmk -c diff --git a/proposal/macros.tex b/proposal/macros.tex index a092514..d1bf101 100644 --- a/proposal/macros.tex +++ b/proposal/macros.tex @@ -6,7 +6,7 @@ \newcommand{\bN}{\mathbb{N}} \newcommand{\bC}{\mathbb{C}} \newcommand{\bX}{\mathbb{X}} -\newcommand{\to}{\rightarrow} +% \newcommand{\to}{\rightarrow} \newcommand{\mto}{\mapsto} \newcommand{\UU}{\ensuremath{\mathcal{U}}\xspace} \let\type\UU