Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kakwa/curriculum-vitae
My curriculum vitae
https://github.com/kakwa/curriculum-vitae
curriculum-vitae cv latex moderncv tex
Last synced: about 1 month ago
JSON representation
My curriculum vitae
- Host: GitHub
- URL: https://github.com/kakwa/curriculum-vitae
- Owner: kakwa
- License: artistic-2.0
- Created: 2014-02-09T13:02:33.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2024-04-08T22:45:00.000Z (9 months ago)
- Last Synced: 2024-04-16T18:34:00.904Z (9 months ago)
- Topics: curriculum-vitae, cv, latex, moderncv, tex
- Language: TeX
- Size: 272 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
curriculum-vitae
================My curriculum vitae
Debian dependancies
-------------------```bash
# on debian Sid (2019-03)
sudo aptitude install texlive-full fonts-font-awesome
```
Notes:* package texlive-full is too much, but it's the quickest
option for lazy people like me.Building the CVs
----------------```bash
# build a specific language
$ make CV_LANG=fr# build all the language in //
$ make -j# the CVs are located in the out directory
$ ls *.pdf
CV_CARPENTIER_en.pdf CV_CARPENTIER_fr.pdf
```In case of issue for one of the CV, the logs are located in directory of the CV:
```bash
cat en/cv.log
```Adding a language
-----------------Just create a new directory, put `cv.tex` inside it and symlink the picture if needed:
```bash
CV_LANG=ger
mkdir $CV_LANG
touch $CV_LANG/cv.tex
ln -s ../picture/ID.jpg $CV_LANG/
```Changing the ID picture
-----------------------Just replace `picture/ID.jpg`.