sinaatalay / rendercv

A LaTeX CV/Resume Framework
http://docs.rendercv.com
MIT License
1.67k stars 108 forks source link

Support for more languages #14

Closed yuqiuwen closed 7 months ago

yuqiuwen commented 7 months ago

A clear and concise description of what you want to happen.

sinaatalay commented 7 months ago

Hello, could you explain what kind of support you would like?

AndreasKarasenko commented 4 months ago

For people that want to change the language: you can directly edit the tex file created after the render cli command. You can then use the latex_to_pdf function from this library to recreate the pdf. Simple regex can automate that as well. I just changed all the date related things to German, the headers can be translated directly in the yaml.

E.g.

from rendercv.renderer import latex_to_pdf
import pathlib

path = pathlib.Path("./rendercv_output/test_CV.tex")
latex_to_pdf(path)

Change the path to the path of your file and enjoy pls.

sinaatalay commented 4 months ago

Could you please post the same comment in issue #26 @AndreasKarasenko? Thank you very much for your contribution.