My CV in LaTeX.
Go to file
Alan Orth 4f2f70e027
README.md: Adjust headings
I originally made these effectively <h2> headers because I didn't
want to compete with the GitHub headings when the file was viewed
on their web interface. As it turns out, GitHub renders this in an
HTML5 article tag, which sits in its own world on the page, so it
shouldn't matter.

Signed-off-by: Alan Orth <alan.orth@gmail.com>
2016-03-28 12:19:16 +03:00
.gitignore Add initial .gitignore 2012-12-02 00:42:56 +03:00
Makefile Makefile: Change default behavior for "all" target 2012-12-11 19:38:53 +03:00
README.md README.md: Adjust headings 2016-03-28 12:19:16 +03:00
cv.tex cv.tex: Minor nitpick for "research-computing infrastructure" 2015-09-28 20:13:33 +03:00
cv_sample.png Update sample screenshot 2015-03-22 16:05:53 +03:00
picture.jpg Add picture.jpg for the example template 2012-12-11 15:40:19 +03:00
template.tex Initial commit 2012-12-02 00:35:16 +03: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:

Image

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 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

Pre-requistes 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

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/2015basic/bin/x86_64-darwin
$ sudo tlmgr install collection-fontsrecommended
$ wget https://launchpad.net/moderncv/trunk/1.5.1/+download/moderncv-1.5.1.zip
$ unzip moderncv-1.5.1.zip
$ sudo mkdir -p /usr/local/texlive/2015basic/texmf-local/tex/latex/moderncv
$ sudo cp moderncv/*.sty moderncv/*.cls /usr/local/texlive/2015basic/texmf-local/tex/latex/moderncv
$ sudo mktexlsr

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