Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kpoxo6op/cv
Create CV in PDF format from a markdown file
https://github.com/kpoxo6op/cv
Last synced: 1 day ago
JSON representation
Create CV in PDF format from a markdown file
- Host: GitHub
- URL: https://github.com/kpoxo6op/cv
- Owner: kpoxo6op
- Created: 2024-04-15T08:47:23.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-10-10T21:50:00.000Z (3 months ago)
- Last Synced: 2024-11-08T08:50:53.023Z (about 2 months ago)
- Homepage:
- Size: 419 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# About
Generate PDF CV from Markdown file.
## Build locally
Tested the build on Ubuntu.
### Install pandoc and other packages
```sh
sudo apt-get update
sudo apt install \
pandoc \
texlive-latex-base \
texlive-fonts-recommended \
texlive-extra-utils \
texlive-latex-extra \
texlive-xetex \
fonts-ubuntu
```### Build
```sh
pandoc cv.md -o cv.pdf --pdf-engine=xelatex
```