commit 735d18b25c3d751a808072eb8f92ff1c2ceb40f8
parent eac76a6fdea05695baeabd5d8d224949fa0b5fc0
Author: Matthew Carlson <matt@mcarlson.xyz>
Date: Wed, 15 Sep 2021 17:53:31 -0400
forgot to run pdflatex twice
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.local/bin/compile.sh b/.local/bin/compile.sh
@@ -49,7 +49,7 @@ main() {
'java') javac "${file}" && java "${file}" ;;
'py') python "${file}" ;;
'sh') sh "${file}" ;;
- 'tex') printf 'reached'
+ 'tex') pdflatex --output-directory="${dir}" "${base}"
if grep -iq 'addbibresource' "${file}"; then
biber --input-directory "${dir}" "${base}"
fi