2020-02-08 23:43:37 +00:00
|
|
|
#!/bin/sh
|
2019-05-31 23:38:43 +00:00
|
|
|
|
2018-07-25 17:45:05 +00:00
|
|
|
# This script will compile or run another finishing operation on a document. I
|
2018-10-26 04:28:09 +00:00
|
|
|
# have this script run via vim.
|
2018-04-11 00:48:45 +00:00
|
|
|
#
|
2020-11-08 12:57:37 +00:00
|
|
|
# Compiles .tex. groff (.mom, .ms), .rmd, .md, .org. Opens .sent files as sent
|
2022-04-10 12:39:05 +00:00
|
|
|
# presentations. Runs scripts based on extension or shebang.
|
2020-05-30 22:58:41 +00:00
|
|
|
#
|
|
|
|
# Note that .tex files which you wish to compile with XeLaTeX should have the
|
|
|
|
# string "xelatex" somewhere in a comment/command in the first 5 lines.
|
2018-04-11 00:48:45 +00:00
|
|
|
|
2018-07-24 17:34:38 +00:00
|
|
|
file=$(readlink -f "$1")
|
2020-06-05 02:27:01 +00:00
|
|
|
dir=${file%/*}
|
2018-04-11 00:48:45 +00:00
|
|
|
base="${file%.*}"
|
2020-06-06 23:17:35 +00:00
|
|
|
ext="${file##*.}"
|
2018-10-15 04:15:33 +00:00
|
|
|
|
2020-11-11 22:04:28 +00:00
|
|
|
cd "$dir" || exit 1
|
2018-04-11 00:48:45 +00:00
|
|
|
|
2018-07-25 16:14:38 +00:00
|
|
|
textype() { \
|
|
|
|
command="pdflatex"
|
2022-08-10 11:53:24 +00:00
|
|
|
texroot=$(grep -Poi "^ *% *\! *tex root *= *\w+(?:\.\w*)?" "$file" | cut -d "=" -f 2 | tr -d "[:blank:]")
|
|
|
|
[ -n "$texroot" ] && base=$texroot && echo "Compiling from TeX root: $texroot"
|
2020-11-11 22:04:28 +00:00
|
|
|
( head -n5 "$file" | grep -qi 'xelatex' ) && command="xelatex"
|
2018-07-25 17:45:05 +00:00
|
|
|
$command --output-directory="$dir" "$base" &&
|
2020-11-11 22:04:28 +00:00
|
|
|
grep -qi addbibresource "$file" &&
|
2018-07-25 17:45:05 +00:00
|
|
|
biber --input-directory "$dir" "$base" &&
|
|
|
|
$command --output-directory="$dir" "$base" &&
|
|
|
|
$command --output-directory="$dir" "$base"
|
2020-05-24 17:13:27 +00:00
|
|
|
}
|
2018-04-11 00:48:45 +00:00
|
|
|
|
2020-06-06 23:17:35 +00:00
|
|
|
case "$ext" in
|
2020-11-11 22:04:28 +00:00
|
|
|
# Try to keep these cases in alphabetical order.
|
2020-06-06 23:17:35 +00:00
|
|
|
[0-9]) preconv "$file" | refer -PS -e | groff -mandoc -T pdf > "$base".pdf ;;
|
2020-06-18 17:41:28 +00:00
|
|
|
c) cc "$file" -o "$base" && "$base" ;;
|
2020-10-19 13:09:03 +00:00
|
|
|
cpp) g++ "$file" -o "$base" && "$base" ;;
|
2020-12-07 20:55:03 +00:00
|
|
|
cs) mcs "$file" && mono "$base".exe ;;
|
2020-11-11 22:04:28 +00:00
|
|
|
go) go run "$file" ;;
|
2020-06-18 17:41:28 +00:00
|
|
|
h) sudo make install ;;
|
2020-12-10 18:55:00 +00:00
|
|
|
java) javac -d classes "$file" && java -cp classes "${1%.*}" ;;
|
2020-06-18 17:41:28 +00:00
|
|
|
m) octave "$file" ;;
|
2020-07-07 15:30:26 +00:00
|
|
|
md) if [ -x "$(command -v lowdown)" ]; then
|
2022-01-22 00:27:56 +00:00
|
|
|
lowdown --parse-no-intraemph "$file" -Tms | groff -mpdfmark -ms -kept > "$base".pdf
|
2020-07-07 15:30:26 +00:00
|
|
|
elif [ -x "$(command -v groffdown)" ]; then
|
2020-05-30 22:58:41 +00:00
|
|
|
groffdown -i "$file" | groff > "$base.pdf"
|
|
|
|
else
|
2021-01-06 14:12:34 +00:00
|
|
|
pandoc -t ms --highlight-style=kate -s -o "$base".pdf "$file"
|
2020-05-30 22:58:41 +00:00
|
|
|
fi ; ;;
|
2020-06-18 17:41:28 +00:00
|
|
|
mom) preconv "$file" | refer -PS -e | groff -mom -kept -T pdf > "$base".pdf ;;
|
|
|
|
ms) preconv "$file" | refer -PS -e | groff -me -ms -kept -T pdf > "$base".pdf ;;
|
2020-11-11 22:04:28 +00:00
|
|
|
org) emacs "$file" --batch -u "$USER" -f org-latex-export-to-pdf ;;
|
2020-06-06 23:17:35 +00:00
|
|
|
py) python "$file" ;;
|
2020-06-18 17:41:28 +00:00
|
|
|
[rR]md) Rscript -e "rmarkdown::render('$file', quiet=TRUE)" ;;
|
2020-06-08 09:51:13 +00:00
|
|
|
rs) cargo build ;;
|
2020-11-11 22:04:28 +00:00
|
|
|
sass) sassc -a "$file" "$base.css" ;;
|
2020-06-06 23:17:35 +00:00
|
|
|
scad) openscad -o "$base".stl "$file" ;;
|
|
|
|
sent) setsid -f sent "$file" 2>/dev/null ;;
|
2020-06-18 17:41:28 +00:00
|
|
|
tex) textype "$file" ;;
|
2021-07-21 16:09:53 +00:00
|
|
|
*) sed -n '/^#!/s/^#!//p; q' "$file" | xargs -r -I % "$file" ;;
|
2018-04-11 00:48:45 +00:00
|
|
|
esac
|