forked from MartinThoma/LaTeX-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4e8ec74
commit 97738c2
Showing
2 changed files
with
73 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
SOURCE = letter | ||
|
||
make: | ||
pdflatex $(SOURCE).tex -output-format=pdf | ||
make clean | ||
|
||
clean: | ||
rm -rf *.aux *.log |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
\documentclass[a4paper, 12pt, KOMAold]{scrlttr2} | ||
\usepackage[utf8]{inputenc} % this is needed for umlauts | ||
\usepackage[ngerman]{babel} % this is needed for umlauts | ||
\usepackage[T1]{fontenc} % needed for right umlaut output in pdf | ||
\usepackage[ngerman, num]{isodate} % get DD.MM.YYYY dates | ||
|
||
% Anpassen %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | ||
\newcommand{\Vorname}{Martin} % Vorname % | ||
\newcommand{\Nachname}{Thoma} % Nachname % | ||
\newcommand{\Strasse}{Alte Alle} % Deine Straße % | ||
\newcommand{\Hausnummer}{107} % Deine Hausnummer % | ||
\newcommand{\PLZ}{81245} % Deine PLZ % | ||
\newcommand{\Ort}{München} % Dein Ort % | ||
\newcommand{\Kundennr}{DE30 6605 0000 0000 0000 00} % Deine Kundennummer % | ||
% | ||
\newcommand{\Empfaenger}{Sparkasse Karlsruhe} % Der Empfänger % | ||
\newcommand{\EStrasse}{Kaiserstr. 223} % Straße des Empfängers % | ||
\newcommand{\EPLZ}{76133} % PLZ des Empfängers % | ||
\newcommand{\EOrt}{Karlsruhe} % Ort des Empfängers % | ||
% | ||
\newcommand{\DocTitle}{Kündigung aller Konten} %Titel des Dokuments% | ||
% Datum der Kündigung % | ||
\newcommand{\Kuendigungsdatum}{nächstmöglichen Termin} % | ||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | ||
|
||
|
||
% pdfinfo | ||
\pdfinfo{ | ||
/Author (\Nachname, \Vorname) | ||
/Title (\DocTitle) | ||
/Subject (\DocTitle) | ||
/Keywords (Kündigung) | ||
} | ||
|
||
% set letter variables | ||
\signature{\Vorname~\Nachname} | ||
\customer{\Kundennr} | ||
\backaddress{\Vorname~\Nachname, \Strasse~\Hausnummer, \PLZ~\Ort} | ||
|
||
% Begin document %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | ||
\begin{document} | ||
\begin{letter}{\Empfaenger \\ \EStrasse \\ \EPLZ~\EOrt} | ||
\date{\today}%Change this if you want a different date than today | ||
\subject{Kündigung} | ||
\opening{Sehr geehrte Damen und Herren,} | ||
hiermit kündige ich mein Konto | ||
|
||
{}\Kundennr{} | ||
|
||
zum nächstmöglichen Zeitpunkt. | ||
Bitte überweisen Sie Restguthaben auf folgendes Konto: | ||
|
||
Kontoinhaber: Martin Thoma\\ | ||
IBAN: DE32100100000000000000\\ | ||
BIC: NTSBDEB1XXX\\ | ||
Name der neuen Bank: N26\\ | ||
|
||
Gleichzeitig widerrufe ich eventuell erteile Freistellungsaufträge. | ||
|
||
Bitte senden Sie mir eine schriftliche Bestätigung der Kündigung unter Angabe | ||
des Beendigungszeitpunktes. | ||
|
||
\closing{Mit freundlichen Grüßen,} | ||
\end{letter} | ||
\end{document} |