Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zepedropaixao/tex-resume
Compilation and source of a XeLaTeX implementation of my CV. The CV is built according to the currently considered best practices by the majority of US companies for Software Development roles.
https://github.com/zepedropaixao/tex-resume
cv cv-template latex latex-document latex-template resume resume-template tex xelatex
Last synced: 4 months ago
JSON representation
Compilation and source of a XeLaTeX implementation of my CV. The CV is built according to the currently considered best practices by the majority of US companies for Software Development roles.
- Host: GitHub
- URL: https://github.com/zepedropaixao/tex-resume
- Owner: zepedropaixao
- License: mit
- Created: 2018-01-22T17:31:09.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2023-10-26T11:11:09.000Z (over 1 year ago)
- Last Synced: 2024-09-29T05:01:23.746Z (4 months ago)
- Topics: cv, cv-template, latex, latex-document, latex-template, resume, resume-template, tex, xelatex
- Language: TeX
- Homepage:
- Size: 1.86 MB
- Stars: 3
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# My CV in TeX [![Build Status](https://travis-ci.org/zepedropaixao/tex-resume.svg?branch=master)](https://travis-ci.org/zepedropaixao/tex-resume)
XeLaTex implementation of my CV.
The guidelines that led me to this CV design and layout were the following rules that I found in [this](https://www.quora.com/How-can-a-software-engineer-write-a-killer-resume/answer/Allen-Cheung?share=da9df56a&srid=JRMM) Quora answer and believe to be the current standard considerations in recruitment nowadays:
* **A single pager.** Unless you have two+ decades of experience you do not have enough interesting things to say on your resume, and I just won't read it. Include a github link or a personal site if you want to show off what you've done.
* **Projects, with technical implementation descriptions.** Recruiters look for keywords, engineers look for algorithms, techniques and niche software. "Wrote sorted hash map" is more interesting than "used jsonp for Javascript AJAX UI".
* **Technical proficiencies.** Listing the twenty languages you've used is pretty standard, but we both know that you'd be most comfortable with a small subset, so try to specify which those are. I don't do this, but some interviewers will pick an area that you've listed on your resume and deep dive on the nuance, and hold it against you when you flounder.
* **Post code online.** There's only so much you can get across in an interview setting (especially when accounting for nervousness, bad questions, scheduling, etc.), and I'm always looking for more evidence outside of the interview if you can provide it. You also get the benefit of having spent much more time & having had many more revisions for anything you post online.# Getting Started
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes.
## Install the dependencies
If you wish to be able to develop and support several types of latex and tex files, the best bet is to install the full dependencies package:
```
sudo apt-get install texlive-full
```## Easy GUI for editing, previewing and compiling the .tex file (optional)
I personally prefer to use Texmaker, to install it run in your terminal:
```
sudo apt-get install texmaker
```## Clone this repository
First clone this repository in any folder you like:
```
git clone [email protected]:zepedropaixao/paixaocv.git
```## Compile the .tex file to get your .pdf resume
Make the modifications you wish and then compile the .tex file using XeLaTex
```
cd paixaocv
xelatex -synctex=1 -interaction=nonstopmode resume.tex
```Alternatively you can use the Texmaker interface to very easily edit and preview your changes. For further instructions on how do compile .tex files using Texmaker please refer to their online [documentation](http://www.xm1math.net/texmaker/doc.html).
# License
This project is licensed under the MIT License - see the [LICENSE](https://github.com/zepedropaixao/paixaocv/blob/master/LICENSE) file for details