mirror of
https://github.com/MartinThoma/LaTeX-examples.git
synced 2025-04-19 11:38:05 +02:00
kit master
This commit is contained in:
parent
69a5efe260
commit
42ea29b53c
2 changed files with 71 additions and 0 deletions
8
documents/kit-mathe-template/Makefile
Executable file
8
documents/kit-mathe-template/Makefile
Executable file
|
@ -0,0 +1,8 @@
|
|||
SOURCE = kit-mathe-template
|
||||
|
||||
make:
|
||||
pdflatex $(SOURCE).tex -output-format=pdf
|
||||
make clean
|
||||
|
||||
clean:
|
||||
rm -rf *.aux *.log
|
63
documents/kit-mathe-template/kit-mathe-template.tex
Normal file
63
documents/kit-mathe-template/kit-mathe-template.tex
Normal file
|
@ -0,0 +1,63 @@
|
|||
\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}{Parkstraße} % Deine Straße %
|
||||
\newcommand{\Hausnummer}{17} % Deine Hausnummer %
|
||||
\newcommand{\PLZ}{76131} % Deine PLZ %
|
||||
\newcommand{\Ort}{Karlsruhe} % Dein Ort %
|
||||
\newcommand{\Matrikelnr}{123456} % Deine Matrikelnummer %
|
||||
\newcommand{\email}{info@martin-thoma.de} % Deine Email %
|
||||
%
|
||||
\newcommand{\Empfaenger}{Karlsruher Institut für Technologie} % Der Empfänger
|
||||
\newcommand{\EStrasse}{Am Fasanengarten 5} % Straße des Empfängers %
|
||||
\newcommand{\EPLZ}{76131} % PLZ des Empfängers %
|
||||
\newcommand{\EOrt}{Karlsruhe} % Ort des Empfängers %
|
||||
%
|
||||
\newcommand{\DocTitle}{Antrag auf Prüfungszulassung} %Titel des Dokuments%
|
||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
|
||||
|
||||
% pdfinfo
|
||||
\pdfinfo{
|
||||
/Author (\Nachname, \Vorname)
|
||||
/Title (\DocTitle)
|
||||
/Subject (\DocTitle)
|
||||
/Keywords (Antrag)
|
||||
}
|
||||
|
||||
% set letter variables
|
||||
\signature{\Vorname~\Nachname}
|
||||
% \customer{\Matrikelnr}
|
||||
\backaddress{\Vorname~\Nachname, \Strasse~\Hausnummer, \PLZ~\Ort}
|
||||
\newkomavar*[Matrikelnummer]{mtgldsnr}
|
||||
\setkomavar{mtgldsnr}{\Matrikelnr}
|
||||
\newkomavar*[Email]{email}
|
||||
\setkomavar{email}{\email}
|
||||
% Begin document %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
\begin{document}
|
||||
\begin{letter}{\Empfaenger \\ \EStrasse \\ \EPLZ~\EOrt \\ info@martin-thoma.de}
|
||||
\date{\today}%Change this if you want a different date than today
|
||||
\subject{\DocTitle}
|
||||
\opening{Sehr geehrte Damen und Herren des Informatik-Prüfungsausschusses,}
|
||||
|
||||
hiermit beantrage ich die Zulassung zur Prüfung folgender Module für
|
||||
insgesamt 18~ECTS im Ergänzungsfach Mathematik für den Master Informatik:
|
||||
|
||||
\begin{itemize}
|
||||
\item \texttt{[MATHBAST01]} Einführung in die Stochastik (6 ECTS)
|
||||
\item \texttt{[MATHBAST02]} Wahrscheinlichkeitstheorie (6 ECTS)
|
||||
\item \texttt{[MATHBAST03]} Markovsche Ketten (6 ECTS)
|
||||
\item \texttt{[MATHMMST11]} Markovsche Entscheidungsprozesse (4 ECTS)
|
||||
\end{itemize}
|
||||
|
||||
Dies wurde bereits mit Herrn Dr. Kühnlein abgesprochen, siehe Anhang.
|
||||
|
||||
\closing{Mit freundlichen Grüßen,}
|
||||
\end{letter}
|
||||
\end{document}
|
Loading…
Add table
Add a link
Reference in a new issue