chore: Added .build.yaml, renamed LICENCE
Fix: Allow changing font size
Migrated to GitLab, refactoring
A LaTeX template for printable academic documents.
Read the documentation by downloading the latest demo release!
Arch Linux users: Download the template directly from the AUR.
On *nix systems you should clone the repository in your ~/texmf/tex/latex/
directory.
You can automate it in your Makefile:
AQADEMIA_ROOT = /usr/share/texmf-dist/tex/latex/aqademia/
AQADEMIA_USER = $${HOME}/texmf/tex/latex/aqademia/
.PHONY: aqademia
aqademia:
@(find $(AQADEMIA_ROOT)) 1>/dev/null 2>&1 || \
(find $(AQADEMIA_USER) && git -C $(AQADEMIA_USER) pull) 1>/dev/null 2>&1 \
|| (mkdir -p ~/texmf/tex/latex \
&& git clone https://gitlab.com/Groctel/aqademia $(AQADEMIA_USER) \
) \
1>/dev/null 2>&1
You can also copy aqademic.cls
in your LaTeX source.
You can build any project using Aqademia with pdflatex
or any other LaTeX engine.
An example Makefile is provided for both the whole repository and the demo.
While it's an overshot for this project, this structure makes a lot of sense in bigger repositories like my personal university repo.