inline gist

This commit is contained in:
Marc Tamsky 2018-02-28 16:02:10 -08:00 committed by GitHub
parent 2cb2c932c5
commit b04d638f09
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -13,8 +13,40 @@ branches:
install: install:
- pip install -r requirements.txt - pip install -r requirements.txt
# Install TeXLive # Install TeXLive
- curl -sSL https://gist.githubusercontent.com/seisman/ad00252a9f03fc644146a11e6983d9c5/raw/install-tl.sh -o install-tl.sh # steps copied from https://gist.githubusercontent.com/seisman/ad00252a9f03fc644146a11e6983d9c5/raw/install-tl.sh ::
- sudo bash -x install-tl.sh - REMOTE="http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet"
- mkdir -p /tmp/install-texlive
- cd /tmp/install-texlive/
- curl -sSL $REMOTE/install-tl-unx.tar.gz | tar -xz -C ./ --strip-components=1
- |
cat << EOF > texlive.profile
selected_scheme scheme-basic
TEXMFHOME ~/.texmf
collection-basic 1
collection-fontsrecommended 1
collection-langchinese 1
collection-latex 1
collection-latexrecommended 1
collection-xetex 1
option_doc 0
option_src 0
EOF
- PLATFORM=$(./install-tl --print-platform)
- TEXLIVE=$(./install-tl --version | egrep -o "20..")
- TEXBIN="/usr/local/texlive/${TEXLIVE}/bin/${PLATFORM}"
- ./install-tl -q -profile texlive.profile -repository $REMOTE
- echo PATH=$PATH:$TEXBIN
- echo 'export PATH=$PATH':$TEXBIN >> ~/.bash_profile
- $TEXBIN/tlmgr install tabulary latexmk ulem environ trimspaces titlesec \
varwidth framed threeparttable wrapfig upquote capt-of \
multirow eqparbox needspace fncychap
- source ~/.bash_profile - source ~/.bash_profile
- export TLMGR=`which tlmgr` - export TLMGR=`which tlmgr`
# update texlive # update texlive