2020-02-08 18:43:37 -05:00
|
|
|
#!/bin/sh
|
2019-05-31 19:38:43 -04:00
|
|
|
|
2018-07-25 13:45:05 -04:00
|
|
|
# This script will compile or run another finishing operation on a document. I
|
2018-10-26 00:28:09 -04:00
|
|
|
# have this script run via vim.
|
2018-04-10 17:48:45 -07:00
|
|
|
#
|
2019-05-31 19:38:43 -04:00
|
|
|
# Compiles .tex. groff (.mom, .ms), .rmd, .md. Opens .sent files as sent
|
|
|
|
# presentations. Runs scripts based on extention or shebang
|
2020-05-30 18:58:41 -04: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-10 17:48:45 -07:00
|
|
|
|
2018-07-24 13:34:38 -04:00
|
|
|
file=$(readlink -f "$1")
|
2020-06-05 08:27:01 +06:00
|
|
|
dir=${file%/*}
|
2018-04-10 17:48:45 -07:00
|
|
|
base="${file%.*}"
|
2020-06-07 05:17:35 +06:00
|
|
|
ext="${file##*.}"
|
2018-10-15 00:15:33 -04:00
|
|
|
|
2018-10-26 00:28:09 -04:00
|
|
|
cd "$dir" || exit
|
2018-04-10 17:48:45 -07:00
|
|
|
|
2018-07-25 12:14:38 -04:00
|
|
|
textype() { \
|
|
|
|
command="pdflatex"
|
|
|
|
( sed 5q "$file" | grep -i -q 'xelatex' ) && command="xelatex"
|
2018-07-25 13:45:05 -04:00
|
|
|
$command --output-directory="$dir" "$base" &&
|
2018-10-26 00:28:09 -04:00
|
|
|
grep -i addbibresource "$file" >/dev/null &&
|
2018-07-25 13:45:05 -04:00
|
|
|
biber --input-directory "$dir" "$base" &&
|
|
|
|
$command --output-directory="$dir" "$base" &&
|
|
|
|
$command --output-directory="$dir" "$base"
|
2020-05-24 10:13:27 -07:00
|
|
|
}
|
2018-04-10 17:48:45 -07:00
|
|
|
|
2020-06-07 05:17:35 +06:00
|
|
|
case "$ext" in
|
|
|
|
[0-9]) preconv "$file" | refer -PS -e | groff -mandoc -T pdf > "$base".pdf ;;
|
2020-06-18 23:41:28 +06:00
|
|
|
c) cc "$file" -o "$base" && "$base" ;;
|
|
|
|
go) go run "$file" ;;
|
2020-10-19 09:09:03 -04:00
|
|
|
cpp) g++ "$file" -o "$base" && "$base" ;;
|
2020-06-18 23:41:28 +06:00
|
|
|
h) sudo make install ;;
|
|
|
|
m) octave "$file" ;;
|
2020-07-07 10:30:26 -05:00
|
|
|
md) if [ -x "$(command -v lowdown)" ]; then
|
2020-05-30 18:58:41 -04:00
|
|
|
lowdown -d nointem -e super "$file" -Tms | groff -mpdfmark -ms -kept > "$base".pdf
|
2020-07-07 10:30:26 -05:00
|
|
|
elif [ -x "$(command -v groffdown)" ]; then
|
2020-05-30 18:58:41 -04:00
|
|
|
groffdown -i "$file" | groff > "$base.pdf"
|
|
|
|
else
|
|
|
|
pandoc "$file" --pdf-engine=xelatex -o "$base".pdf
|
|
|
|
fi ; ;;
|
2020-06-18 23:41:28 +06: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-06-07 05:17:35 +06:00
|
|
|
py) python "$file" ;;
|
2020-06-18 23:41:28 +06:00
|
|
|
[rR]md) Rscript -e "rmarkdown::render('$file', quiet=TRUE)" ;;
|
2020-06-08 02:51:13 -07:00
|
|
|
rs) cargo build ;;
|
2020-06-18 23:41:28 +06:00
|
|
|
sass) sassc -a "$file" "$base.css" ;;
|
2020-06-07 05:17:35 +06:00
|
|
|
scad) openscad -o "$base".stl "$file" ;;
|
|
|
|
sent) setsid -f sent "$file" 2>/dev/null ;;
|
2020-06-18 23:41:28 +06:00
|
|
|
tex) textype "$file" ;;
|
2019-01-17 12:18:41 -05:00
|
|
|
*) sed 1q "$file" | grep "^#!/" | sed "s/^#!//" | xargs -r -I % "$file" ;;
|
2018-04-10 17:48:45 -07:00
|
|
|
esac
|