This repository is a collection of LaTeX document class that tend to use on a daily basis. Thoses document may not always fullfill your needs, feel free to fork or suggest features.
Recommendations : In order to correctly compile your document using one of the document classes, I recommend you to use xelatex
(which is my daily tool).
If you plan to use a pipeline based on docker
like Gitlab-CI to compile your document, have a look at the docker:texlive2019
image.
First, clone this repository using git clone
or git submodule add
:
- Using the submodule functionnality will allow you to keep track of the documentclass evolutions alongside your repository
- If you're not using Git to keep track of changes, you can either define symbolic link between the documentclass and your directory or directly edit inside your fresh clone.
$ xelatex --shell-escape --output-dir=out your_file.tex
[...]
$ cd out && makeglossaries your_file && cd ..
$ xelatex --shell-escape --output-dir=out your_file.tex
[...]