Sources for building my academic CV, written in LaTeX and using a custom template inspired on leouieda/cv and lheagy/cv.
Download a PDF version of my CV.
You can use Tectonic to build the PDF version of the CV from the sources. Tectonic is a modernizes self-contained LaTeX engine that's usually faster than using a regular LaTeX compiler. Check its website for instructions on how to install it. If you are familiar with Anaconda, it can be installed from conda-forge.
I recommend using the Makefile
to build the PDF:
- Use
make
to build the PDF. - Use
make show
to open the PDF with your favourite PDF reader. - Use
make clean
to remove the built PDF.
If you cannot install Tectonic, you can still generate the PDF out of you regular texlive installation. But you might need some extra packages:
For Ubuntu or Debian:
latexmk
texlive
texlive-latex-extra
texlive-xetex
texlive-fonts-extra
To build the PDF just run:
mkdir _output
latexmk -xelatex -outdir=_output cv.tex
You can use make show
to open the PDF with you favourite PDF reader and
make clean
to remove the built PDF and every other generated file.
All LaTeX template source code is distributed under the BSD 3-clause License.