README.md (1116B)
1 # A simple LaTeX curriculum vitae template 2 3 ## How To 4 5 Create a `config.tex` inside the projects root directory, specifying your 6 personal information: 7 ```tex 8 \def\authorname{Chris Kiriakou} 9 \def\authorplace{Musterstadt} 10 \def\authoraddress{Musterstraße 1, 10115 \authorplace} 11 \def\authorjobtitle{Software Engineer} 12 \def\authorphone{+49 151 98765432} 13 \def\authoremail{c@kiri.com} 14 \def\authorwebsite{https://www.ckiri.com} 15 \def\authorbirth{07.04.1996, Musterstadt} 16 ``` 17 18 To build the PDF document, run: 19 ```sh 20 make ats doc=<content_name> 21 ``` 22 23 NOTE: The document (`<content_name>`) specified needs to be available inside 24 the `content` directory. 25 26 If the `doc` cli parameter isn't specified, it defaults to `template` (a simple 27 showcase document). 28 29 To build a ATS compliant CV, run: 30 ```sh 31 make ats doc=<cv_name> 32 ``` 33 34 ## Misc 35 36 ### Flatten the document 37 38 If *active* contents are prohibited (due to security concerns), flatten the PDF 39 after building it: 40 ```sh 41 make doc=<document_name> flatten 42 ``` 43 44 ### Changing locale 45 46 To use the german locale, make sure `\usepackage[ngerman]{babel}` inside 47 `main.tex` is not commented out.