2012-12-04 08:11:53 +01:00
# Curriculum Vitae for Alan Orth
A CV written in LaTeX using the [moderncv ](http://www.ctan.org/pkg/moderncv ) class.
2013-05-09 22:05:04 +02:00
## Sample
Here's what it looks like with real data, using the "classic" style and blue color scheme:
![Image ](https://raw.github.com/alanorth/cv/master/cv_sample.png )
2012-12-04 08:11:53 +01:00
## 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
* LaTeX -> PDF ensures a consisent, 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
2012-12-19 21:56:24 +01:00
## Pre-requistes for building
2014-12-20 18:39:44 +01:00
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.
2012-12-19 21:56:24 +01:00
2012-12-19 21:59:04 +01:00
__On Arch Linux:__
2012-12-19 21:56:24 +01:00
sudo pacman -Sy texlive-core texlive-latexextra
2013-10-25 10:51:31 +02:00
__On Fedora:__
sudo yum install texlive texlive-moderncv
2013-10-27 23:42:16 +01:00
__On Ubuntu:__
sudo add-apt-repository ppa:texlive-backports
sudo apt-get install texlive
sudo apt-get --no-install-recommends install texlive-latex-extra
2012-12-19 21:59:04 +01:00
__Others:__ send a pull request with instructions for your distro.