From 5eee5b44924bf9079a67d5bc7612bfad56ddeed3 Mon Sep 17 00:00:00 2001 From: Yaroslav Date: Fri, 17 Jan 2020 19:14:34 +0300 Subject: config restructuring and cleanup --- dotfiles/.local/bin/doccompiler | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100755 dotfiles/.local/bin/doccompiler (limited to 'dotfiles/.local/bin/doccompiler') diff --git a/dotfiles/.local/bin/doccompiler b/dotfiles/.local/bin/doccompiler new file mode 100755 index 0000000..b95d7a3 --- /dev/null +++ b/dotfiles/.local/bin/doccompiler @@ -0,0 +1,34 @@ +#!/bin/sh + +# Script to compile some documents to their final output (.tex, .md, .rmd, etc.) +# Taken from one of Luke Smith's scripts, except this one focuses solely on +# document compilation and doesn't compile any scripts or programs. + +file=$(readlink -f "$1") +dir=$(dirname "$file") +base="${file%.*}" + +cd "$dir" || exit + +textype() { \ + command="pdflatex -interaction=nonstopmode" + ( 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) refer -PS -e "$file" | groff -me -ms -kept -T pdf > "$base".pdf ;; + *\.mom) refer -PS -e "$file" | groff -mom -kept -T pdf > "$base".pdf ;; + *\.[0-9]) refer -PS -e "$file" | groff -mandoc -T pdf > "$base".pdf ;; + *\.rmd) echo "require(rmarkdown); rmarkdown::render('$file', quiet=TRUE)" | R -q --vanilla ;; + *\.tex) textype "$file" ;; + *\.md) pandoc "$file" --pdf-engine=xelatex -o "$base".pdf ;; + *\.sent) setsid sent "$file" 2>/dev/null & ;; + *) echo "Couldn't figure out file type!" && exit 1 ;; +esac + +echo "Compiled successfully" -- cgit v1.2.3