English 中文
Resume Template Written with Rust
It sounds cool that we write our resume by programming!
Most of the time we can use some Latex
templates to write beautiful resume and it's very fast.
Sometimes we want to custom our templates, but don't want to learn Latex
syntax, then this crate will help.
You can generate your resume in Latex
format by writting Rust
code.
If you want to render the Latex
document as pdf
, I recommend overleaf.
However, there's a advance directive that I write this crate mainly for Rust programming practice
.
So, don't make it seriously.(hhh)
Add some dependencies to your Cargo.toml
[dependencies]
resume = { git = "https://github.com/SKTT1Ryze/resume-rs", branch = "main" }
lazy_static = "1.4.0"
latex = { git = "https://github.com/SKTT1Ryze/latex-rs" }
Then see main.rs.
This repo always welcomes for your Pull Request
.