commit 1ab8f16d925c6410e51e2e9fb46c345a2f808464
parent 5df9b4e8688e9cc721220bea9b14d0aa7339fc64
Author: Chris Kiriakou <chris@kiriakou.net>
Date: Wed, 23 Sep 2026 20:41:39 +0200
Adjust How-To
Diffstat:
1 file changed, 12 insertions(+), 14 deletions(-)
diff --git a/README.md b/README.md
@@ -4,35 +4,33 @@
## How To
-Create a `config.mk` inside the projects root directory, specifying your
+Create a `config.tex` inside the projects root directory, specifying your
personal information:
```make
-doc ?= template
-author_forename ?= Chris
-author_surname ?= Kiriakou
-author_place ?= Musterstadt
-author_address ?= Musterstraße 1, 10115 $(author_place)
-author_job_title ?= Softwareentwickler
-author_phone_number ?= +49 151 98765432
-author_email ?= c@ckiri.com
-author_website ?= https://www.ckiri.com
-author_birth ?= 07.04.1996, Musterstadt
+\def\authorname{Chris Kiriakou}
+\def\authorplace{Musterstadt}
+\def\authoraddress{Musterstraße 1, 10115 \authorplace}
+\def\authorjobtitle{Software Engineer}
+\def\authorphone{+49 151 98765432}
+\def\authoremail{c@kiri.com}
+\def\authorwebsite{https://www.ckiri.com}
+\def\authorbirth{07.04.1996, Musterstadt}
```
Create a new document inside `content/` (use either `ats-template.tex` or
`template.tex` ):
```sh
cd content
-cp template.tex <application_name>.tex
+cp ats-template.tex <application_name>.tex
```
Build the PDF document by running the following:
```sh
-make doc=<application_name>
+make ats doc=<application_name>
```
-If the `doc` cli parameter isn't specified, it defaults to `template` (a simple
+If the `doc` cli parameter isn't specified, it defaults to `ats-template` (a simple
showcase document).
To build the ATS document `ats-template.tex` has to be created (look previous