Created
October 16, 2015 10:26
-
-
Save AmauryCarrade/d21bd7e73e6887ee625e to your computer and use it in GitHub Desktop.
Special thanks: https://tex.stackexchange.com/questions/79713/install-emerald-font-package-on-ubuntu
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
mkdir -p `kpsewhich --var-value=TEXMFHOME` | |
cd `kpsewhich --var-value=TEXMFHOME` | |
wget http://mirror.ctan.org/fonts/emerald.zip | |
unzip emerald.zip | |
cp -r emerald/. . && rm -rf emerald/ | |
rm emerald.zip | |
updmap --enable Map emerald.map | |
texhash |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment