Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sewera/resumegen
A tool for generating a classic style resume from YAML using LaTeX.
https://github.com/sewera/resumegen
go golang latex resume resume-generator resume-template resume-tex yaml
Last synced: about 1 month ago
JSON representation
A tool for generating a classic style resume from YAML using LaTeX.
- Host: GitHub
- URL: https://github.com/sewera/resumegen
- Owner: sewera
- License: gpl-3.0
- Created: 2023-04-08T11:33:51.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2023-11-12T20:13:36.000Z (about 1 year ago)
- Last Synced: 2024-11-15T10:26:17.740Z (2 months ago)
- Topics: go, golang, latex, resume, resume-generator, resume-template, resume-tex, yaml
- Language: Go
- Homepage:
- Size: 318 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Resume Generator LaTeX
A tool for generating a classic style resume from metadata, templated in LaTeX.## Example
An example YAML can be found in [example/example.yaml](./example/example.yaml).
The command:```sh
cat example/example.yaml | ./resumegen example/example.pdf
```generates [example/example.pdf](./example/example.pdf),
which looks like this:![Example Resume](./example/example.png)
## Prerequisites
- Go
- Make
- TeXLive (with latexmk)## Run
```sh
make build
cat | ./resumegen
```## Combining inputs
You can have structured files for different kinds of resumes,
like:```sh
cat base.yaml company1.yaml backend.yaml | ./resumegen your_name_company1_backend.pdf
```## Schema validation
No fields in `Resume` are required,
because data can be spread through different YAML files.
Schema validation should work out of the box in IntelliJ.
In VSCode, you have to install a recommended extension for YAML.