2018-02-22 16:27:37 +00:00
|
|
|
#!/bin/bash
|
2018-04-12 18:07:33 +00:00
|
|
|
# Description: Document typesetting
|
2018-02-27 05:15:14 +00:00
|
|
|
set -e
|
2018-02-22 16:27:37 +00:00
|
|
|
|
|
|
|
case "$(uname -s)" in
|
|
|
|
Darwin)
|
|
|
|
_recipe brew
|
2018-02-23 15:19:52 +00:00
|
|
|
_brew_cask mactex
|
2018-02-22 16:27:37 +00:00
|
|
|
;;
|
|
|
|
*)
|
|
|
|
_recipe _apt
|
2018-08-14 02:11:18 +00:00
|
|
|
_ppa jonathonf/texlive
|
2018-02-22 16:27:37 +00:00
|
|
|
_apt texlive-full
|
2018-08-14 02:11:18 +00:00
|
|
|
# xzdec is required by tlmgr
|
|
|
|
_apt xzdec
|
2018-02-22 16:27:37 +00:00
|
|
|
esac
|
2018-05-02 21:23:12 +00:00
|
|
|
|
|
|
|
tlmgr init-usertree 2>/dev/null || true
|
|
|
|
|
|
|
|
function _tex {
|
|
|
|
local pkg=$1
|
|
|
|
if ! tlmgr --usermode info --only-installed $pkg | grep -i '^installed:.*Yes$' >/dev/null 2>&1; then
|
|
|
|
_run "[tex] Install $pkg" tlmgr --usermode install $@
|
|
|
|
else
|
|
|
|
echo "[tex] $pkg is already installed, skipping."
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2018-05-30 13:45:49 +00:00
|
|
|
function _tex_git {
|
|
|
|
local pkg=$1
|
|
|
|
local repo=$2
|
2018-10-01 20:38:28 +00:00
|
|
|
local repo_path=$3
|
|
|
|
local clone_path="$(kpsewhich -var-value TEXMFHOME)/git/latex/${pkg}"
|
|
|
|
local install_path="$(kpsewhich -var-value TEXMFHOME)/tex/latex/${pkg}"
|
|
|
|
if [[ ! -d "${install_path}" ]]; then
|
|
|
|
_git $2 "$(kpsewhich -var-value TEXMFHOME)/git/latex/${pkg}"
|
|
|
|
_run "[tex] Install $pkg" ln -s "${clone_path}/${repo_path}" "${install_path}"
|
|
|
|
else
|
|
|
|
echo "[tex] $pkg is already installed, skipping."
|
|
|
|
fi
|
2018-05-30 13:45:49 +00:00
|
|
|
}
|
|
|
|
|
2018-05-02 21:23:12 +00:00
|
|
|
_tex labbook
|
|
|
|
_tex mdframed
|
|
|
|
_tex microtype
|
|
|
|
_tex minted
|
|
|
|
_tex moderncv
|
|
|
|
_tex soul
|
|
|
|
_tex tufte-latex
|
2018-05-30 13:45:49 +00:00
|
|
|
|
|
|
|
_recipe git
|
|
|
|
_tex_git dnd https://github.com/evanbergeron/DND-5e-LaTeX-Template.git
|
2018-10-01 20:38:28 +00:00
|
|
|
_tex_git trek https://github.com/lancelet/beamer-trek.git theme
|