Skip to content

Commit

Permalink
First Release
Browse files Browse the repository at this point in the history
  • Loading branch information
carlossless committed Feb 11, 2017
0 parents commit 5320e94
Show file tree
Hide file tree
Showing 22 changed files with 1,825 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
.DS_STORE
*.log
*.aux
*.out
*.pdf
11 changes: 11 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
.PHONY: examples

CC = xelatex
SECTION_DIR = sections
SECTION_SRCS = $(shell find $(SECTION_DIR) -name '*.tex')

resume.pdf: resume.tex $(SECTION_SRCS)
$(CC) $<

clean:
rm -rf *.pdf
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# My Resume

This is the latex source code of my resume. Based on the lovely [Awesome CV](https://github.com/posquit0/Awesome-CV) template.

## Building

Building is done with `make` and `xelatex`. Either [TeXLive](https://www.tug.org/texlive/) or [MacTex](https://www.tug.org/mactex/) (depending on your platform) needs to be installed before trying to build.
Loading

0 comments on commit 5320e94

Please sign in to comment.