File tree Expand file tree Collapse file tree 2 files changed +21
-1
lines changed Expand file tree Collapse file tree 2 files changed +21
-1
lines changed Original file line number Diff line number Diff line change
1
+ # ## -- Custom Template --------------------------------------------------------
2
+ $ENV {' TEXINPUTS' }=' ./IEEEtran//:' . $ENV {' TEXINPUTS' };
3
+ # $ENV{'TEXINPUTS'}='../uit-thesis//:' . $ENV{'TEXINPUTS'};
4
+
5
+ # ## -- Output options --------------------------------------------------------
6
+
7
+ $quiet = 1;
8
+ $silent = 1;
9
+
10
+ # -- Build options -----------------------------------------------------------
11
+
12
+ # $pdf_mode = 1; # PDFLaTeX by default
13
+ # $aux_dir = "build"; # Build in this folder...
14
+ # $emulate_aux = 1; # and move PDF in root (`$out_dir`)
15
+ # Force reproducible builds
16
+ # Source: https://tex.stackexchange.com/questions/229605
17
+ # $pretex = '\pdfvariable suppressoptionalinfo 512\relax';
18
+ # $usepretex = 1;
19
+
20
+ $max_repeat = 5; # Try 5 times at maximum then give up
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ all: $(TEXSRC)
18
18
@$(TEXCOMPILE ) $(TEXFLAGS ) $(TEXNAME ) .tex
19
19
@for aux in $(shell find . -name "* .aux") ; do $(BIBCOMPILE ) $$ aux; done
20
20
@$(TEXCOMPILE ) $(TEXFLAGS ) $(TEXNAME ) .tex
21
- # @$(TEXCOMPILE) $(TEXFLAGS) $(TEXNAME).tex
21
+ @$(TEXCOMPILE ) $(TEXFLAGS ) $(TEXNAME ) .tex
22
22
@mv $(TEXBUILD ) /$(TEXNAME ) .pdf $(OUTNAME ) .pdf
23
23
24
24
clean :
You can’t perform that action at this time.
0 commit comments