-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* 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
- Loading branch information
Showing
17 changed files
with
6,739 additions
and
78 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
### -- Search paths -------------------------------------------------------- | ||
|
||
# TeX search paths | ||
@texinputs = ( | ||
'.', # Current directory | ||
'./Conference-LaTeX-template_10-17-19/', # IEEE Template dir | ||
'', # Default search paths | ||
); | ||
$ENV{'TEXINPUTS'}=join(':', @texinputs); | ||
|
||
### -- Output options -------------------------------------------------------- | ||
|
||
#$quiet = 1; | ||
#$silent = 1; | ||
|
||
# -- Build options ----------------------------------------------------------- | ||
|
||
# PDF engine | ||
# | ||
#$pdf_mode = 0; # Do not generate a PDF | ||
$pdf_mode = 1; # Generate PDF using pdflatex | ||
#$pdf_mode = 2; # Generate PDF from a .ps file via command in $ps2pdf | ||
#$pdf_mode = 3; # Generate PDF from a .dvi file via command in $dvi2pdf | ||
#$pdf_mode = 4; # Generate PDF using lualatex | ||
#$pdf_mode = 5; # Generate PDF using xelatex | ||
|
||
# Bibtex/biber | ||
# | ||
#$bibtex_use = 0; # Do not use bibtex/biber | ||
#$bibtex_use = 1; # Use bibtex/biber. On clean, keep .bbl files | ||
$bibtex_use = 1.5; # Use bibtex/biber. On clean, keep .bbl files if no .bib | ||
#$bibtex_use = 2; # Use bibtex/biber. On clean, remove .bbl files | ||
|
||
# Other options | ||
# | ||
$max_repeat = 5; # Try 5 times at maximum then give up |
Oops, something went wrong.