Skip to content

Commit

Permalink
Update CV 2016 (#1)
Browse files Browse the repository at this point in the history
Update the CV to apply for the GMT postdoc grant
  • Loading branch information
leouieda authored Jul 1, 2016
1 parent bdf2af6 commit c901db9
Show file tree
Hide file tree
Showing 33 changed files with 431 additions and 1,181 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
*~
output/
*.aux
.*.swp
73 changes: 61 additions & 12 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,16 +1,65 @@
RESUME=resume_leonardo_uieda
# The name of the main .tex file to build.
# Other files can be included into this one.
PROJECT = leonardo_uieda_cv

$(RESUME).pdf: $(RESUME).tex
pdflatex $<
#bibtex $(RESUME)
pdflatex $<
pdflatex $<
# Folder with the Latex source files
SRC = .

spellcheck:
aspell check $(RESUME).tex
# Folder where the figure files are (will assume they are EPSs or PNGs)
FIGS = figures

show: $(RESUME).pdf
evince $(RESUME).pdf &
# Folder where the BibTex .bib files are
BIB = .

clean:
rm -rf *.bbl *.blg *.aux *.out *.log $(RESUME).pdf $(RESUME).dvi
# Folder where the .cls .bst and .sty style files are
STYLES = $(SRC)

# Folder where output will be placed
OUTPUT = output

### File Types (for dependencies)
TEX_FILES = $(shell find $(SRC) -maxdepth 1 -name '*.tex')
STY_FILES = $(shell find $(STYLES) -maxdepth 1 -name '*.sty')
CLS_FILES = $(shell find $(STYLES) -maxdepth 1 -name '*.cls')
BST_FILES = $(shell find $(STYLES) -maxdepth 1 -name '*.bst')
EPS_FILES = $(shell find $(FIGS) -name '*.eps')
PNG_FILES = $(shell find $(FIGS) -name '*.png')

### Compilation Flags
LATEX_FLAGS = -halt-on-error -output-directory $(OUTPUT)/

### Standard PDF Viewers
UNAME := $(shell uname)
ifeq ($(UNAME), Linux)
PDFVIEWER = evince
endif
ifeq ($(UNAME), Darwin)
PDFVIEWER = open
endif


# MAIN TARGETS
###############################################################################

all: $(OUTPUT)/$(PROJECT).pdf

show: all
@ # Redirect stdout and stderr to /dev/null for silent execution
@ (${PDFVIEWER} $(OUTPUT)/$(PROJECT).pdf > /dev/null 2>&1 & )

### Clean
# This target cleans the temporary files generated by the tex programs in
# use. All temporary files generated by this makefile will be placed in OUTPUT
# so cleanup is easy.
clean::
rm -rf $(OUTPUT)/ *.aux
rm -rf $(FIGS)/*-eps-converted-to.pdf

$(OUTPUT)/:
mkdir -p $(OUTPUT)/

$(OUTPUT)/$(PROJECT).aux: $(TEX_FILES) $(STY_FILES) $(CLS_FILES) $(PNG_FILES) $(EPS_FILES) | $(OUTPUT)/
pdflatex $(LATEX_FLAGS) $(SRC)/$(PROJECT)

$(OUTPUT)/$(PROJECT).pdf: $(OUTPUT)/$(PROJECT).aux
pdflatex $(LATEX_FLAGS) $(SRC)/$(PROJECT) 1>/dev/null
10 changes: 9 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
Latex source code for my CV.
# Curriculum Vitae

These are the Latex sources for my academic CV.
I use the [moderncv](https://launchpad.net/moderncv) class with minor tweaks
to the templates.

To compile the PDF use:

make

Compiled PDF versions for each update are available at
https://github.com/leouieda/cv/releases
Binary file removed card/card.png
Binary file not shown.
1,079 changes: 0 additions & 1,079 deletions card/card.svg

This file was deleted.

Binary file removed card/qr-contact.png
Binary file not shown.
Binary file removed fatiando.png
Binary file not shown.
Binary file removed figshare.pdf
Binary file not shown.
Binary file added figures/fatiando.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added figures/tesseroids.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed github.pdf
Binary file not shown.
Loading

0 comments on commit c901db9

Please sign in to comment.