Skip to content

Commit a0d4395

Browse files
authored
Refactor (#4)
* refactor: stealing Mike Murphys' revamped build, cleaner remove and leaves a pdf in outer directory that we don't remove on cleanup * feat: syntax highlighting on code snippets (c-style) * refactor: restructure template layout * feat: precompiled example
1 parent e95b14e commit a0d4395

17 files changed

+6739
-78
lines changed

.latexmkrc

Lines changed: 0 additions & 20 deletions
This file was deleted.

Makefile

Lines changed: 0 additions & 16 deletions
This file was deleted.

src/.latexmkrc

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
### -- Search paths --------------------------------------------------------
2+
3+
# TeX search paths
4+
@texinputs = (
5+
'.', # Current directory
6+
'./Conference-LaTeX-template_10-17-19/', # IEEE Template dir
7+
'', # Default search paths
8+
);
9+
$ENV{'TEXINPUTS'}=join(':', @texinputs);
10+
11+
### -- Output options --------------------------------------------------------
12+
13+
#$quiet = 1;
14+
#$silent = 1;
15+
16+
# -- Build options -----------------------------------------------------------
17+
18+
# PDF engine
19+
#
20+
#$pdf_mode = 0; # Do not generate a PDF
21+
$pdf_mode = 1; # Generate PDF using pdflatex
22+
#$pdf_mode = 2; # Generate PDF from a .ps file via command in $ps2pdf
23+
#$pdf_mode = 3; # Generate PDF from a .dvi file via command in $dvi2pdf
24+
#$pdf_mode = 4; # Generate PDF using lualatex
25+
#$pdf_mode = 5; # Generate PDF using xelatex
26+
27+
# Bibtex/biber
28+
#
29+
#$bibtex_use = 0; # Do not use bibtex/biber
30+
#$bibtex_use = 1; # Use bibtex/biber. On clean, keep .bbl files
31+
$bibtex_use = 1.5; # Use bibtex/biber. On clean, keep .bbl files if no .bib
32+
#$bibtex_use = 2; # Use bibtex/biber. On clean, remove .bbl files
33+
34+
# Other options
35+
#
36+
$max_repeat = 5; # Try 5 times at maximum then give up

0 commit comments

Comments
 (0)