Skip to content

Commit

Permalink
Refactor (#4)
Browse files Browse the repository at this point in the history
* 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
nohr-ai authored Feb 22, 2024
1 parent e95b14e commit a0d4395
Show file tree
Hide file tree
Showing 17 changed files with 6,739 additions and 78 deletions.
20 changes: 0 additions & 20 deletions .latexmkrc

This file was deleted.

16 changes: 0 additions & 16 deletions Makefile

This file was deleted.

36 changes: 36 additions & 0 deletions src/.latexmkrc
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
Loading

0 comments on commit a0d4395

Please sign in to comment.