My CV in LaTeX.
Go to file
Alan Orth c537abcff2
cv.tex: Add OpenStreetMap to interests
2021-07-08 10:17:20 +03:00
.gitignore .gitignore: Add .DS_Store 2018-01-14 14:44:04 +02:00
Makefile Makefile: Change default behavior for "all" target 2012-12-11 19:38:53 +03:00
README.md README.md: Fix image name 2021-04-14 11:49:37 +03:00
cv.tex cv.tex: Add OpenStreetMap to interests 2021-07-08 10:17:20 +03:00
cv_sample.png Update sample screenshot 2015-03-22 16:05:53 +03:00
picture.jpg Add new template from moderncv maintainer 2018-01-14 14:21:03 +02:00
template.tex template.tex: Set encoding to UTF-8 2018-01-14 14:24:42 +02:00

README.md

Curriculum Vitae for Alan Orth

A CV written in LaTeX using the moderncv class.

Sample

Here's what it looks like with real data, using the "classic" style and blue color scheme:

Sample CV

Why

I decided to start keeping my CV in LaTeX because:

  • I can never find my CV when I need it
  • I have dozens of files named resume.doc on my computer
  • LaTeXPDF ensures a consistent, beautiful layout
  • Writing your CV in a source-based language means you can track it in git (w00t!)

Usage

To "build" a PDF you simply type:

$ make

To clean up all generated and intermediate content, type:

$ make clean

Prerequisites for building

Depending on your GNU/Linux distribution the package names may be different. Basically, you need the texlive package, as well as whichever "extras" package contains the moderncv stuff.

On Arch Linux:

$ sudo pacman -Sy texlive-core texlive-latexextra texlive-fontsextra

On Fedora:

$ sudo yum install texlive texlive-moderncv

On Ubuntu:

$ sudo add-apt-repository ppa:texlive-backports
$ sudo apt-get install texlive
$ sudo apt-get --no-install-recommends install texlive-latex-extra

Mac OS X: download and install BasicTeX (a minimal TeXLive distribution) and then:

$ export PATH=$PATH:/usr/local/texlive/2017basic/bin/x86_64-darwin
$ sudo tlmgr update --self
$ sudo tlmgr install collection-fontsrecommended moderncv fontawesome

Others: send a pull request with instructions for your distro.