lie-algebras-and-their-representations
Source code for my notes on representations of semisimple Lie algebras and Olivier Mathieu's classification of simple weight modules
01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23
.PHONY: all compile auto-compile clean archive.zip all: compile # Generates a ZIP archive of the source code archive.zip: find ./ -name '*.tex' -or -name '*.bib' | xargs zip $@ find images -type f -and -not -name '*.pdf' | xargs zip -j $@ # Compile the document compile: latexmk tcc.tex # Compile the document whenever a (relevant) file is changed auto-compile: find ./ -name '*.tex' -or -name '*.bib' -or -name '*.tikz' \ | entr make || exit 0 # Removed LuaLaTeX and ASpell artifacts clean: texclear tcc.tex find . -name '*.bak' -delete