Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dexpota/cv
A CV template engine with yet another CV document template written in LaTeX 🖊️
https://github.com/dexpota/cv
curriculum cv cv-template latex latex-template resume
Last synced: about 1 month ago
JSON representation
A CV template engine with yet another CV document template written in LaTeX 🖊️
- Host: GitHub
- URL: https://github.com/dexpota/cv
- Owner: dexpota
- Created: 2018-08-20T12:40:50.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2021-12-21T08:20:24.000Z (about 3 years ago)
- Last Synced: 2024-11-09T06:37:27.264Z (3 months ago)
- Topics: curriculum, cv, cv-template, latex, latex-template, resume
- Language: TeX
- Homepage:
- Size: 340 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[fontawesome]: https://fontawesome.com/v4.7.0/
# Curriculum Vitae
## Prerequisites
### Python
1. Install `python3`, `pip` and `pipenv` on your system:
```bash
sudo apt install python3 python3-pip
pip install pipenv
```2. Create a virtual environment with `pipenv`, this will install all python
dependencies:```bash
pipenv install
```### Latex
1. You will need `xelatex` and `tlmgr` installed on your system:
- On Ubuntu and Debian you will need to install `xzdec`:
```bash
sudo apt install texlive-xetex xzdec
```2. Before installing the packages with `tlmgr` these instructions might been
necessary:```bash
tlmgr init-usertree
tlmgr option repository
```3. Use `tlmgr`to install all required `tex` packages:
```bash
sudo tlmgr install enumitem xifthen ifmtarg fontawesome sourcesanspro tcolorbox environ trimspaces lm-math
```### Fonts
1. In order to use `fontawesome` package you must have the homonym font
installed on your system, you can download it [here][fontawesome]
(it's important to download version `4.7.0`);```bash
wget "https://fontawesome.com/v4.7.0/assets/font-awesome-4.7.0.zip"
unzip -j "font-awesome-4.7.0.zip" "font-awesome-4.7.0/fonts/*" -d ~/.fonts
fc-cache -f -v
```## Building
Simply run `make all` to generate the curriculum in `tex` and `pdf` format.