~groctel/aqademia

A LaTeX template for printable academic documents
chore: Added .build.yaml, renamed LICENCE
Fix: Allow changing font size
Migrated to GitLab, refactoring

clone

read-only
https://git.sr.ht/~groctel/aqademia
read/write
git@git.sr.ht:~groctel/aqademia

You can also use your local clone with git send-email.

#Aqademia

A LaTeX template for printable academic documents.

Read the documentation by downloading the latest demo release!

Buy me a coffee

Preview

#Installation

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.

#Building

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.

Do not follow this link