\documentclass[11pt, a4paper]{book}

% Prepare for german input
\usepackage[german]{babel}
\usepackage[latin1]{inputenc}

% Use T1-Encoding to allow proper hyphenation of words with umlauts
\usepackage[T1]{fontenc}
\usepackage{ae,aecompl} 

% Increased page size
\usepackage{a4wide}

% Useful mathematical packages
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{amsthm}
\usepackage{latexsym}

%
\pagestyle{headings}
%
%
%
\newcommand{\Chapter}{Kapitel}
\newcommand{\Section}{Abschnitt}
\newcommand{\Theorem}{Satz}
\newcommand{\Proposition}{Proposition}
\newcommand{\Lemma}{Lemma}
\newcommand{\Corollary}{Folgerung}
\newcommand{\Definition}{Definition}
\newcommand{\Remark}{Bemerkung}
\newcommand{\Example}{Beispiel}
\newcommand{\Examples}{Beispiele}
\newcommand{\Consequence}{Folgerung}
\newcommand{\Fact}{Tatsache}
\newcommand{\Notation}{Schreibweise}
\newcommand{\Conjecture}{Vermutung}
\newcommand{\Exercise}{Aufgabe}
\newcommand{\AExercise}{Zusatzaufgabe}
\newcommand{\Project}{Projektaufgabe}
\newcommand{\Problem}{Problem}
%

\theoremstyle{break}
\newtheorem{theorem}{Satz}[section]
\newtheorem{proposition}[theorem]{\Proposition}
\newtheorem{lemma}[theorem]{\Lemma}
\newtheorem{corollary}[theorem]{\Corollary}
\newtheorem{consequence}[theorem]{\Consequence}
\newtheorem{conjecture}[theorem]{\Conjecture}
\newtheorem{fact}[theorem]{\Fact}

\theoremstyle{definition}
\newtheorem{notation}[theorem]{\Notation}
\newtheorem{definition}[theorem]{\Definition}
\newtheorem{convention}[theorem]{Convention}
\newtheorem{remark}[theorem]{\Remark}
\newtheorem{example}[theorem]{\Example}
\newtheorem{exercise}[theorem]{\Exercise}
\newtheorem{project}[theorem]{\Project}
\newtheorem{exercisestar}[theorem]{\AExercise}
\newtheorem{problem}[theorem]{\Problem}
\newtheorem{nothing}[theorem]{\negmedspace \negthinspace}
\newtheorem{examplestar}[theorem]{Example$^*$}

\theoremstyle{break}
\newtheorem{examples}[theorem]{\Examples}
\newtheorem{examplesstar}[theorem]{Examples$^*$}
\newtheorem{remark2}[theorem]{\Remark}

%

%
\renewcommand{\labelenumi}{{\rm(\roman{enumi})}}
\renewcommand{\labelenumii}{{\rm(\alph{enumii})}}
\renewcommand{\theequation}{\thesection.\arabic{equation}}
%
\setlength{\unitlength}{1cm}
%
\begin{document}

\chapter{*** Vortragstitel ***}

*** Name des Authors, Artikel ***

*** Name des Vortragenden, Datum ***

\begin{theorem}
Ein Satz: $a^2 + b^2 = c^2$.
\end{theorem}
\begin{proof}
Ein Beweis.
\end{proof}

\begin{thebibliography}{99}
\bibitem{Eisenbud:1995} David Eisenbud\footnote{Bibliothekslabel IMMER Name/Name:Jahr}, {\em Commutative Algebra with a View Toward Algebraic Geometry}, Springer, 1995.
\end{thebibliography}

\end{document}




