49 lines
1.8 KiB
Bash
Executable file
49 lines
1.8 KiB
Bash
Executable file
#!/bin/sh
|
|
|
|
# This script will compile or run another finishing operation on a document. I
|
|
# have this script run via vim.
|
|
#
|
|
# Compiles .tex. groff (.mom, .ms), .rmd, .md. Opens .sent files as sent
|
|
# presentations. Runs scripts based on extention or shebang
|
|
#
|
|
# 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.
|
|
|
|
file=$(readlink -f "$1")
|
|
dir=$(dirname "$file")
|
|
base="${file%.*}"
|
|
|
|
cd "$dir" || exit
|
|
|
|
textype() { \
|
|
command="pdflatex"
|
|
( sed 5q "$file" | grep -i -q 'xelatex' ) && command="xelatex"
|
|
$command --output-directory="$dir" "$base" &&
|
|
grep -i addbibresource "$file" >/dev/null &&
|
|
biber --input-directory "$dir" "$base" &&
|
|
$command --output-directory="$dir" "$base" &&
|
|
$command --output-directory="$dir" "$base"
|
|
}
|
|
|
|
case "$file" in
|
|
*\.ms) preconv "$file" | refer -PS -e | groff -me -ms -kept -T pdf > "$base".pdf ;;
|
|
*\.mom) preconv "$file" | refer -PS -e | groff -mom -kept -T pdf > "$base".pdf ;;
|
|
*\.[0-9]) preconv "$file" | refer -PS -e | groff -mandoc -T pdf > "$base".pdf ;;
|
|
*\.[rR]md) Rscript -e "rmarkdown::render('$file', quiet=TRUE)" ;;
|
|
*\.tex) textype "$file" ;;
|
|
*\.md) if command -v lowdown >/dev/null; then
|
|
lowdown -d nointem -e super "$file" -Tms | groff -mpdfmark -ms -kept > "$base".pdf
|
|
elif command -v groffdown >/dev/null; then
|
|
groffdown -i "$file" | groff > "$base.pdf"
|
|
else
|
|
pandoc "$file" --pdf-engine=xelatex -o "$base".pdf
|
|
fi ; ;;
|
|
*config.h) sudo make install ;;
|
|
*\.c) cc "$file" -o "$base" && "$base" ;;
|
|
*\.py) python "$file" ;;
|
|
*\.m) octave "$file" ;;
|
|
*\.scad) openscad -o "$base".stl "$file" ;;
|
|
*\.go) go run "$file" ;;
|
|
*\.sent) setsid -f sent "$file" 2>/dev/null ;;
|
|
*) sed 1q "$file" | grep "^#!/" | sed "s/^#!//" | xargs -r -I % "$file" ;;
|
|
esac
|