38 lines
990 B
TeX
38 lines
990 B
TeX
\documentclass[a4paper, ngerman]{report}
|
|
\usepackage[utf8]{inputenc}
|
|
\usepackage[T1]{fontenc}
|
|
\usepackage{babel}
|
|
\usepackage{eurosym, tipa, textcomp, textgreek, upgreek}
|
|
\usepackage{amssymb, amsfonts, amsmath, dsfont}
|
|
\usepackage[hidelinks]{hyperref}
|
|
\usepackage{cleveref}
|
|
\usepackage{graphicx}
|
|
\usepackage{longtable, array, tabularx, booktabs, colortbl}
|
|
\usepackage{minted}
|
|
\begin{document}
|
|
\thispagestyle{empty}
|
|
|
|
\begin{center}
|
|
|
|
\textbf{Fallbeschleunigung in Deutschland} \\
|
|
(Gravitational acceleration)
|
|
$$9,81\,\frac{m}{s^2}$$ \\
|
|
~ \\
|
|
|
|
\textbf{pq-Formel} \\
|
|
(Formula to solve quadratic equations)
|
|
$$x_{1,2} = - \frac{p}{2} \pm \sqrt{\left(\frac{p}{2}\right)^2 - q}$$ \\
|
|
~ \\
|
|
|
|
\textbf{Mitternachtsformel} \\
|
|
(Another formula to solve quadratic equations)
|
|
$$x_{1,2} = \frac{-b \pm \sqrt{b^2 - 4ac}}{2a}$$ \\
|
|
~ \\
|
|
|
|
\textbf{Catalansche Zahlen} \\
|
|
(Catalan numbers)
|
|
\begin{equation*} C_n = \frac{1}{n+1} {2n \choose n} = \frac{(2n)!}{(n+1)!n!} \end{equation*}
|
|
\end{center}
|
|
|
|
\end{document}
|