2016-03-28 12:19:16 +03:00
# Curriculum Vitae for Alan Orth
2012-12-04 10:11:53 +03:00
A CV written in LaTeX using the [moderncv ](http://www.ctan.org/pkg/moderncv ) class.
2016-03-28 12:19:16 +03:00
## Sample
2013-05-09 23:05:04 +03:00
Here's what it looks like with real data, using the "classic" style and blue color scheme:
2021-04-14 11:48:09 +03:00
< p align = "center" >
2021-04-14 11:49:37 +03:00
< img width = "600" alt = "Sample CV" src = "cv_sample.png" >
2021-04-14 11:48:09 +03:00
< / p >
2013-05-09 23:05:04 +03:00
2016-03-28 12:19:16 +03:00
## Why
2012-12-04 10:11:53 +03:00
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
2016-12-22 10:24:53 +02:00
* LaTeX → PDF ensures a consistent, beautiful layout
2012-12-04 10:11:53 +03:00
* Writing your CV in a source-based language means you can track it in git (w00t!)
2016-03-28 12:19:16 +03:00
## Usage
2012-12-04 10:11:53 +03:00
To "build" a PDF you simply type:
2015-06-12 15:07:02 +03:00
$ make
2012-12-04 10:11:53 +03:00
To clean up all generated and intermediate content, type:
2015-06-12 15:07:02 +03:00
$ make clean
2012-12-19 12:56:24 -08:00
2019-10-13 17:47:52 +03:00
## Prerequisites for building
2015-06-11 23:08:35 +03: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 12:56:24 -08:00
2012-12-19 12:59:04 -08:00
__On Arch Linux:__
2012-12-19 12:56:24 -08:00
2019-10-13 17:29:31 +03:00
$ sudo pacman -Sy texlive-core texlive-latexextra texlive-fontsextra
2012-12-19 12:56:24 -08:00
2013-10-25 11:51:31 +03:00
__On Fedora:__
2015-06-12 15:07:02 +03:00
$ sudo yum install texlive texlive-moderncv
2013-10-25 11:51:31 +03:00
2013-10-28 01:42:16 +03:00
__On Ubuntu:__
2015-06-12 15:07:02 +03:00
$ sudo add-apt-repository ppa:texlive-backports
$ sudo apt-get install texlive
$ sudo apt-get --no-install-recommends install texlive-latex-extra
2013-10-28 01:42:16 +03:00
2015-06-12 15:20:34 +03:00
__Mac OS X:__ download and install [BasicTeX ](https://www.tug.org/mactex/morepackages.html ) (a minimal TeXLive distribution) and then:
2018-01-14 14:05:01 +02:00
$ export PATH=$PATH:/usr/local/texlive/2017basic/bin/x86_64-darwin
2016-12-22 14:54:26 +02:00
$ sudo tlmgr update --self
2018-01-14 14:15:03 +02:00
$ sudo tlmgr install collection-fontsrecommended moderncv fontawesome
2015-06-12 15:20:34 +03:00
2012-12-19 12:59:04 -08:00
__Others:__ send a pull request with instructions for your distro.