add an example image

This commit is contained in:
Sina Atalay 2023-10-27 22:46:32 +02:00
parent 9b253f93d8
commit 0f9ed9bfd0
3 changed files with 15 additions and 7 deletions

View File

@ -5,7 +5,7 @@
[![pypi-downloads](https://img.shields.io/pypi/dm/rendercv?label=PyPI%20downloads&color=rgb(0%2C79%2C144))](https://pypi.python.org/pypi/rendercv) [![pypi-downloads](https://img.shields.io/pypi/dm/rendercv?label=PyPI%20downloads&color=rgb(0%2C79%2C144))](https://pypi.python.org/pypi/rendercv)
RenderCV is a Python application that creates a $\LaTeX$ CV as a PDF from a JSON/YAML input file. Currently, it only supports one theme (*classic*). An example can be seen [here](https://github.com/sinaatalay/rendercv/blob/main/John_Doe_CV.pdf?raw=true). More themes are planned to be supported in the future. RenderCV is a Python application that creates a $\LaTeX$ CV as a PDF from a JSON/YAML input file. Currently, it only supports one theme (*classic*). An example PDF can be seen [here](https://github.com/sinaatalay/rendercv/blob/main/John_Doe_CV.pdf?raw=true). More themes are planned to be supported in the future.
**What does it do?** **What does it do?**
@ -62,6 +62,8 @@ cv:
- Then, it creates a $\LaTeX$ file. - Then, it creates a $\LaTeX$ file.
- Finally, it renders the $\LaTeX$ file to generate the PDF, and you don't need $\LaTeX$ installed on your PC because RenderCV comes with [TinyTeX](https://yihui.org/tinytex/). - Finally, it renders the $\LaTeX$ file to generate the PDF, and you don't need $\LaTeX$ installed on your PC because RenderCV comes with [TinyTeX](https://yihui.org/tinytex/).
![RenderCV example](docs/images/example.png)
## Quick Start Guide ## Quick Start Guide
1. Install [Python](https://www.python.org/downloads/) (3.10 or newer). 1. Install [Python](https://www.python.org/downloads/) (3.10 or newer).

BIN
docs/images/example.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 316 KiB

View File

@ -1,10 +1,11 @@
# RenderCV: Overview # RenderCV
[![CI](https://github.com/sinaatalay/rendercv/actions/workflows/ci.yaml/badge.svg?branch=main)](https://github.com/sinaatalay/rendercv/actions/workflows/ci.yaml) [![CI](https://github.com/sinaatalay/rendercv/actions/workflows/ci.yaml/badge.svg?branch=main)](https://github.com/sinaatalay/rendercv/actions/workflows/ci.yaml)
[![coverage](https://coverage-badge.samuelcolvin.workers.dev/sinaatalay/rendercv.svg)](https://coverage-badge.samuelcolvin.workers.dev/redirect/sinaatalay/rendercv) [![coverage](https://coverage-badge.samuelcolvin.workers.dev/sinaatalay/rendercv.svg)](https://coverage-badge.samuelcolvin.workers.dev/redirect/sinaatalay/rendercv)
[![pypi](https://img.shields.io/pypi/v/rendercv.svg)](https://pypi.python.org/pypi/rendercv) [![pypi-version](https://img.shields.io/pypi/v/rendercv?label=PyPI%20version&color=rgb(0%2C79%2C144))](https://pypi.python.org/pypi/rendercv)
[![pypi-downloads](https://img.shields.io/pypi/dm/rendercv)](https://pypi.python.org/pypi/rendercv) [![pypi-downloads](https://img.shields.io/pypi/dm/rendercv?label=PyPI%20downloads&color=rgb(0%2C79%2C144))](https://pypi.python.org/pypi/rendercv)
RenderCV is a Python application that creates a $\LaTeX$ CV as a PDF from a JSON/YAML input file. Currently, it only supports one theme (*classic*). An example can be seen [here](https://github.com/sinaatalay/rendercv/blob/main/John_Doe_CV.pdf?raw=true). More themes are planned to be supported in the future.
RenderCV is a Python application that creates a $\LaTeX$ CV as a PDF from a JSON/YAML input file. Currently, it only supports one theme (*classic*). An example PDF can be seen [here](https://github.com/sinaatalay/rendercv/blob/main/John_Doe_CV.pdf?raw=true). More themes are planned to be supported in the future.
**What does it do?** **What does it do?**
@ -20,6 +21,8 @@ cv:
social_networks: social_networks:
- network: GitHub - network: GitHub
username: johndoe username: johndoe
- network: LinkedIn
username: johndoe
education: education:
- institution: My University - institution: My University
url: https://example.com url: https://example.com
@ -46,8 +49,9 @@ cv:
start_date: "2022-06-15" start_date: "2022-06-15"
end_date: "2022-08-01" end_date: "2022-08-01"
highlights: highlights:
- AmIACompany is a technology company that provides - AmIACompany is a **technology** (markdown is
web-based engineering applications that enable the supported) company that provides web-based
engineering applications that enable the
simulation and optimization of products and simulation and optimization of products and
manufacturing tools. manufacturing tools.
- Modeled and simulated a metal-forming process deep - Modeled and simulated a metal-forming process deep
@ -58,6 +62,8 @@ cv:
- Then, it creates a $\LaTeX$ file. - Then, it creates a $\LaTeX$ file.
- Finally, it renders the $\LaTeX$ file to generate the PDF, and you don't need $\LaTeX$ installed on your PC because RenderCV comes with [TinyTeX](https://yihui.org/tinytex/). - Finally, it renders the $\LaTeX$ file to generate the PDF, and you don't need $\LaTeX$ installed on your PC because RenderCV comes with [TinyTeX](https://yihui.org/tinytex/).
![RenderCV example](images/example.png)
## Quick Start Guide ## Quick Start Guide
1. Install [Python](https://www.python.org/downloads/) (3.10 or newer). 1. Install [Python](https://www.python.org/downloads/) (3.10 or newer).