File tree Expand file tree Collapse file tree 1 file changed +10
-3
lines changed Expand file tree Collapse file tree 1 file changed +10
-3
lines changed Original file line number Diff line number Diff line change 8
8
);
9
9
$ENV {' TEXINPUTS' }=join (' :' , @texinputs );
10
10
11
+ # BibTeX search paths
12
+ @bibinputs = (
13
+ ' .' , # Current directory
14
+ ' ./Conference-LaTeX-template_10-17-19/' , # IEEE Template dir
15
+ ' ' , # Default search paths
16
+ );
17
+ $ENV {' BIBINPUTS' }=join (' :' , @bibinputs );
18
+
11
19
# ## -- Output options --------------------------------------------------------
12
20
13
21
$quiet = 1;
@@ -24,15 +32,14 @@ $pdf_mode = 1; # Generate PDF using pdflatex
24
32
# $pdf_mode = 4; # Generate PDF using lualatex
25
33
# $pdf_mode = 5; # Generate PDF using xelatex
26
34
27
- $max_repeat = 5; # Try 5 times at maximum then give up
28
-
29
35
# Bibtex/biber
30
36
#
31
37
# $bibtex_use = 0; # Do not use bibtex/biber
32
38
# $bibtex_use = 1; # Use bibtex/biber. On clean, keep .bbl files
33
- # $bibtex_use = 1.5; # Use bibtex/biber. On clean, keep .bbl files if no .bib
39
+ $bibtex_use = 1.5; # Use bibtex/biber. On clean, keep .bbl files if no .bib
34
40
# $bibtex_use = 2; # Use bibtex/biber. On clean, remove .bbl files
35
41
36
42
# Other options
37
43
#
38
44
$max_repeat = 5; # Try 5 times at maximum then give up
45
+ $force_mode = 1; # Force build even if files are up to date
You can’t perform that action at this time.
0 commit comments