Skip to content

Commit 6bc9d3f

Browse files
narrative review: LaTeX submission package (main.tex + main.pdf) (#63)
1 parent 5360b52 commit 6bc9d3f

5 files changed

Lines changed: 239 additions & 1 deletion

File tree

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# LaTeX build artifacts
2+
*.aux
3+
*.log
4+
*.out
5+
*.bbl
6+
*.blg
7+
*.toc
8+
*.spl
9+
*.fdb_latexmk
10+
*.fls
11+
*.synctex.gz
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# LaTeX build for the TiCS Forum Review narrative review.
2+
#
3+
# Outputs main.pdf from main.tex + refs.bib + figures/fig{1-4}.png.
4+
# Requires: pdflatex, bibtex (TeX Live or MacTeX).
5+
6+
PDF = main.pdf
7+
TEX = main.tex
8+
BIB = refs.bib
9+
FIGS = figures/fig1.png figures/fig2.png figures/fig3.png figures/fig4.png
10+
11+
all: $(PDF)
12+
13+
$(PDF): $(TEX) $(BIB) $(FIGS)
14+
pdflatex -interaction=nonstopmode $(TEX)
15+
bibtex main
16+
pdflatex -interaction=nonstopmode $(TEX)
17+
pdflatex -interaction=nonstopmode $(TEX)
18+
19+
clean:
20+
rm -f main.aux main.bbl main.blg main.log main.out main.spl main.toc main.fdb_latexmk main.fls main.synctex.gz
21+
22+
distclean: clean
23+
rm -f $(PDF)
24+
25+
.PHONY: all clean distclean
1.51 MB
Binary file not shown.

0 commit comments

Comments
 (0)