dotfiles/recipes/tex

54 lines
1.3 KiB
Text
Raw Normal View History

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
_brew_cask mactex
2018-02-22 16:27:37 +00:00
;;
*)
_recipe _apt
_ppa jonathonf/texlive
2018-02-22 16:27:37 +00:00
_apt texlive-full
# 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
}
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-02 21:23:12 +00:00
_tex labbook
_tex mdframed
_tex microtype
_tex minted
_tex moderncv
_tex soul
_tex tufte-latex
_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