new notes
This commit is contained in:
1
anschreiben/.gitignore
vendored
Normal file
1
anschreiben/.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
||||
/out
|
||||
17
anschreiben/justfile
Normal file
17
anschreiben/justfile
Normal file
@@ -0,0 +1,17 @@
|
||||
alias c := compile
|
||||
alias w := watch
|
||||
|
||||
in_file := "main.typ"
|
||||
out_file := "letter.pdf"
|
||||
|
||||
compile:
|
||||
mkdir -p ./out
|
||||
typst c {{in_file}} out/{{out_file}} --font-path $XDG_DATA_HOME/typst/packages/pandast/pl-docs/0.1.1/
|
||||
|
||||
watch: compile
|
||||
#!/usr/bin/env bash
|
||||
if command -v okular > /dev/null 2>&1
|
||||
then
|
||||
okular out/{{out_file}} &
|
||||
fi
|
||||
typst w {{in_file}} out/{{out_file}} --font-path $XDG_DATA_HOME/typst/packages/pandast/pl-docs/0.1.1/
|
||||
104
anschreiben/main.typ
Normal file
104
anschreiben/main.typ
Normal file
@@ -0,0 +1,104 @@
|
||||
#import "@pandast/pl-docs:0.1.1" as pl
|
||||
|
||||
#set text(..pl.styles.pl_text())
|
||||
|
||||
#let margin = (top: 4.5cm, right: 2cm, bottom: 2.5cm, left: 2.5cm)
|
||||
|
||||
#let dpl = pl.data.d_pandaloop
|
||||
|
||||
#set page(
|
||||
paper: "a4",
|
||||
margin: margin,
|
||||
footer-descent: -10%,
|
||||
// footer: context {
|
||||
// let text_size = 8pt
|
||||
// let accent = rgb("e94427")
|
||||
// let cur = counter(page).display()
|
||||
// let n = context{counter(page).final().at(0)}
|
||||
|
||||
// set text(size: text_size, fill: rgb("6a6a69"), tracking: -0.5pt)
|
||||
// set grid.cell(align: left)
|
||||
|
||||
// align(right, [Seite #cur#text(fill: accent)[ \/ ]#n])
|
||||
// align(center, block(
|
||||
// width: 100%,
|
||||
// height: auto,
|
||||
// grid(
|
||||
// column-gutter: 10pt,
|
||||
// columns: (1fr, 1fr, 1fr),
|
||||
// [
|
||||
// Pandaloop GmbH\
|
||||
// Neuenhöfer Allee 49\
|
||||
// 50935 Köln, DE\
|
||||
// info\@pandaloop.de
|
||||
// ],
|
||||
// [
|
||||
// Geschäftsführung: Hassan Sharif Abu-Jabir, Jan Bergen\
|
||||
// Steuernummer: 219/5829/4139\
|
||||
// USt-IDNr. DE454012278
|
||||
// ],
|
||||
// [
|
||||
// Pandaloop GmbH\
|
||||
// IBAN: DE51 1001 0123 1662 1405 07\
|
||||
// BIC: QNTODEB3XXX\
|
||||
// ]
|
||||
// )
|
||||
// ))
|
||||
// }
|
||||
)
|
||||
|
||||
#place(left + top, dx: -margin.left + 0.85cm, dy: -margin.top + 10.5cm, line(length: 0.5cm, stroke: luma(200)))
|
||||
|
||||
#place(left + top, dx: -margin.left + 0.85cm, dy: -margin.top + 21cm, line(length: 0.5cm, stroke: luma(200)))
|
||||
|
||||
//Absender
|
||||
#place(right, dx: margin.right - 1cm, dy: 0.5cm,
|
||||
box(width: 7.5cm, height: 4cm,
|
||||
align(left + horizon, text()[
|
||||
Jan Bergen\
|
||||
Rainer-Maria-Rilke-Weg 13\
|
||||
50354 Hürth
|
||||
#grid(columns: (1fr, 3fr), gutter: 5pt,
|
||||
[Telefon:\ E-Mail:\ Datum:],
|
||||
[+49 (0) 157 35594390\ mail\@janbergen.de\ #datetime.today().display("[day].[month].[year]")]
|
||||
)
|
||||
])
|
||||
))
|
||||
|
||||
// Adressat
|
||||
// #place(box(width: 8cm, grid(
|
||||
// rows: (1.77cm, 2.73cm),
|
||||
// align(horizon, underline(text(size: 8pt, [Jan Bergen, Rainer-Maria-Rilke-Weg 13, 50354 Hürth]))),
|
||||
// [Rheinmetall AG\ Rheinmetall Platz 1\ 40476 Düsseldorf]
|
||||
// )))
|
||||
|
||||
// Body
|
||||
#place(dy: 4.5cm + 0.846cm,
|
||||
box(width: 100%, height: 10cm,
|
||||
text()[
|
||||
|
||||
*Anschreiben*
|
||||
|
||||
\
|
||||
|
||||
Sehr geehrte Damen und Herren,
|
||||
|
||||
\
|
||||
|
||||
ich bewerbe mich als Softwareentwickler, da ich mein naturwissenschaftliches Denken mit praktischer Erfahrung in der Softwareentwicklung verbinde und gezielt an technisch anspruchsvollen Aufgaben arbeiten möchte.
|
||||
|
||||
Ich habe Projekte eigenständig konzipiert und umgesetzt und arbeite strukturiert, analytisch und mit klarem Fokus auf funktionierende, effiziente Lösungen. Technisch bringe ich insbesondere Erfahrung in Python und Rust sowie im Umgang mit Linux-basierten Systemen mit.
|
||||
|
||||
Ich bin überzeugt, dass ich mich schnell in neue Themen einarbeite und einen direkten Beitrag leisten kann.
|
||||
|
||||
\
|
||||
|
||||
Mit freundlichen Grüßen
|
||||
|
||||
Jan Bergen
|
||||
|
||||
]
|
||||
)
|
||||
)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user