You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
3 years ago | |
---|---|---|
Dockerfile | 4 years ago | |
README.md | 3 years ago | |
run.sh | 4 years ago |
README.md
texbox
Build
Build the container. This may take some seconds, as tex-full
is rather huge.
sudo docker build . -t "texbox"
Run
cd
into the current directory and replace <filename.tex>
with your TeX filename.
Then run the following command:
sudo docker run -v "$(pwd)":/tex -e TARGET=<filename.tex> texbox
alias
Insert this alias into your .bashrc
, .zshrc
, or any corresponding file in order to simply build .tex
files using the latexbuild <filename.tex>
command:
alias "latexbuild"='function _latexbuild(){sudo docker run -v "$(pwd)":/tex -e TARGET="$1" texbox;};_latexbuild'