\documentclass[10pt,landscape,a4paper]{article}
\usepackage[utf8]{inputenc}
\usepackage[ngerman]{babel}
\usepackage[utopia,sfscaled]{mathdesign}
\usepackage{amsmath}
\usepackage{upgreek}
\usepackage{bm}
\usepackage{multicol}
\setlength{\columnseprule}{0.5pt}
\usepackage[top=0mm,bottom=1mm,left=1mm,right=1mm]{geometry}
\usepackage{lipsum}
\usepackage[framemethod=tikz]{mdframed}
\usepackage{microtype}
\let\bar\overline
\definecolor{myblue}{cmyk}{1,.72,0,.38}
\everymath\expandafter{\the\everymath \color{myblue}}
\everydisplay\expandafter{\the\everydisplay \color{myblue}}
\newcommand{\header}{
\begin{mdframed}[style=header]
\footnotesize
Math cheat sheet \\
Page~\thepage~of~3
\end{mdframed}
}
\makeatletter
\renewcommand{\section}{\@startsection{section}{1}{0mm}%
{.2ex}%
{.2ex}%x
{\sffamily\bfseries}}
\begin{document}
\small
\begin{multicols*}{4}
\header
\columnbreak
\subsection*{Ableitungen}
\begin{align*}
f(x)&=u(x)+v(x)&\rightarrow f^\prime(x)&=u^\prime(x)+v^\prime(x) \\
f(x)&=\lambda*u(x)&\rightarrow f^\prime(x)&=\lambda*u^\prime(x) \\
f(x)&=u(x)*v(x)&\rightarrow f^\prime(x)&=u^\prime(x)*v(x)+u(x)*v^\prime(x) \\
f(x)&=u(v(x))&\rightarrow f^\prime(x)&=u^\prime(v(x))*v^\prime(x) \\
f(x)&=\frac{u(x)}{v(x)}&\rightarrow f^\prime(x)&=\frac{u^\prime(x)*v(x)+u(x)*v^\prime(x)}{[v(x)^2]}
\end{align*}
\end{multicols*}
\end{document}
1.Why does the tabular width go over the columnwidth of the whole page and how can I set it?
2.And also Texing it gives me this:
./cheatsheet.tex:107: Improper \halign inside $$'s.
<recently read> \halign
l.107 \end{align*}
can someone pls help :) Thank you

tabulardo you mean? Your code doesn't include one. Note thattabularis a specific environment. Can you please edit your question (including its title), to be comprehensible? – Skillmon Jun 01 '18 at 23:20\frac{u' v - u v' }{ v^2 }– Skillmon Jun 01 '18 at 23:28\rightarrowinstructions results in fitting contents and remains easily legible. – Skillmon Jun 01 '18 at 23:30align*environment results in the same error. – Skillmon Jun 01 '18 at 23:32align*environment to\begin{equation*}\begin{aligned}...\end{aligned}\end{equation*}. It results in slightly different vertical spacing and you don't get an error. – Skillmon Jun 01 '18 at 23:34\frac{\mathrm{d}}{\mathrm{d}x}\left( \frac{u}{v} \right) &= \frac{u'v - uv'}{v^2}with every line. That is way smaller and contains every bit of important information. Did you read my second comment (I just want to make sure you don't get bad grades because you used a wrong quotient rule)? – Skillmon Jun 01 '18 at 23:49