Skip to content

Instantly share code, notes, and snippets.

@generall
Last active October 16, 2015 11:50
Show Gist options
  • Save generall/002d2c640cc9f8419c9d to your computer and use it in GitHub Desktop.
Save generall/002d2c640cc9f8419c9d to your computer and use it in GitHub Desktop.
Latex + biblatex + biber sublime compilation
{
"cmd": ["make", "all" ],
"variants": [
{ "cmd": ["make"],
"name": "Build"
},
{ "cmd": ["make", "show"],
"name": "Show"
},
{ "cmd": ["make", "clean"],
"name": "clean"
}
]
}
# 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.
FNAME = ref
.PHONY: $(FNAME).pdf all no_bible 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: $(FNAME).pdf
show:
okular $(FNAME).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.
no_bible: $(FNAME).tex
latexmk -pdf -pdflatex="pdflatex -interactive=nonstopmode -file-line-error" -use-make $(FNAME).tex
$(FNAME).pdf: $(FNAME).tex # $(FNAME).bbl
latexmk -pdf -pdflatex="pdflatex -interactive=nonstopmode -file-line-error" -use-make $(FNAME).tex
$(FNAME).bbl: $(FNAME).bcf
biber $(FNAME).bcf
$(FNAME).bcf: clean
latexmk -pdf -pdflatex="pdflatex -interactive=nonstopmode -file-line-error" -use-make $(FNAME).tex
clean:
latexmk -CA
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment