Hello community,
I am using tectonic for building my latex project with travis on github. For that i use this script.
language: generic
before_install:
- sudo apt-get install texlive-binaries
install: - export PATH="$HOME/miniconda/bin:$PATH"
- if ! command -v conda > /dev/null; then wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh
-O miniconda.sh; bash miniconda.sh -b -p $HOME/miniconda -u; conda config --add
channels conda-forge; conda config --set always_yes yes; conda install tectonic==0.1.10;
fi - conda install -c malramsay biber==2.11 --yes
- conda info -a
- sudo mkdir -p ~/.config/Tectonic/
- echo “[[default_bundles]]” | sudo tee --append ~/.config/Tectonic/config.toml
- sudo echo “url = “https://tectonic.newton.cx/bundles/tlextras-2018.1r0/bundle.tar””
| sudo tee --append ~/.config/Tectonic/config.toml
cache:
directories:- “$HOME/miniconda”
- “$HOME/.cache/Tectonic”
script:
- cd ./thesis/
- tectonic --keep-intermediates --reruns 0 ./MAIN_Masterthesis.tex
- if [ -f “./MAIN_Masterthesis.bcf” ]; then biber MAIN_Masterthesis; fi
- tectonic ./MAIN_Masterthesis.tex --print
- cd …/
How can I build also the glossary and the acronyms?
Greetings
Christian