Personal CV. Created to be modular, so it's really simple and quick to add/remove sections, just by commenting one line. The PDF output can be found [here in the build folder](build/eivindml-cv.pdf).
Make sure all dependencies are installed. Build the CV using the Makefile:
make # Build the PDF
make clean # Remove temporary files
make watch # Watch for changes and rebuild (requires entr)
make open # Build and open the PDF (macOS)You can also compile src/eivindml-cv.tex directly with your favorite TeX/LaTeX engine.
Building requires pdflatex to be installed on your system. The TeX document depends on the moderncv LaTeX package for styling. Install it with:
sudo tlmgr install moderncvTo use the Alegreya Sans font used in this document:
sudo tlmgr install alegreya fontaxesFor the make watch target, install entr:
brew install entr # macOS