diff options
author | Karl Hallsby <karl@hallsby.com> | 2021-09-23 11:03:14 -0500 |
---|---|---|
committer | Karl Hallsby <karl@hallsby.com> | 2021-09-23 11:03:14 -0500 |
commit | d7b7a58ef8053080c4ea9744e19362e0fa9cb88b (patch) | |
tree | b0891aea4f4c3cf142ddb065a5c31c236e66b225 | |
parent | 87551bcb161416fbabb87b490a4176e79c3c41ca (diff) |
Add .latexmkrc to use latexmk to build the PDF file
This is the first step towards making a CI/CD platform for this
particular document.
-rw-r--r-- | .latexmkrc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.latexmkrc b/.latexmkrc new file mode 100644 index 0000000..e802c45 --- /dev/null +++ b/.latexmkrc @@ -0,0 +1,3 @@ +$pdflatex = 'pdflatex -synctex=1 -interaction=nonstopmode'; +$pdf_mode = 1; # tex -> pdf with pdflatex +@default_files = ('Hallsby_Karl.tex'); |