Nachfolgend ein Beispsiel, Beisspiel, wie man eine Formelsammlung als Tabelle aufbauen könnte. Allerdings ist diese Tabelle nicht eleastisch elastisch genug, wenn man sie die Seitenränder variiert.
ändert.
    \documentclass[10pt,a4paper]{scrbook}
    \usepackage[ngerman]{babel}
    \usepackage[
    	left=3cm,
    	right=2cm,
    	top=2.5cm,
    	bottom=2cm,
    	%showframe
    		]{geometry}
    
    \usepackage{amsmath} 
    \usepackage{tabularx}
    \usepackage{multirow}
    \usepackage{booktabs}
    \usepackage{rotating}
    
    \newcommand\tabrotate[1]{\begin{turn}{90}\rlap{#1}\end{turn}}
    
    \begin{document}
    \section*{Eine Tabelle}\vspace{9pt}
    %
    \begin{flushleft}
    \begin{table}[h]
    \begin{tabularx}{\columnwidth}{p{3.1cm} p{.3cm} X X}
    \toprule
     \addlinespace
    \textbf{Einfache (lineare)} & & $K_n=K_0(1+i\cdot n)= K_0\left(1+\frac{p}{100}\cdot n\right)$ &
            & $K_n=\text{Endkapital}$  \\
    \textbf{Verzinsung} & &  & $K_0=\text{Anfangskapital}$   \\
    & \multirow{5}{.25cm}{\tabrotate{Aufzinsung}} &  &  $p=\text{Zinsfuß}$  \\
    & &  & $i=\text{Zinssatz} \, (= p/100)$   \\
    & & & $n=\text{Gesamtlaufzeit in Jahren}$   \\
    \addlinespace
    \cline{2-4}
    \addlinespace
    & & $K_0=\frac{K_n}{(1+i\cdot n)}=\frac{K_n}{(1+\frac{p}{100}\cdot n)}$ & $K_n=\text{Endkapital}$  \\
    & &  & $K_0=\text{Anfangskapital}$   \\
    & \multirow{5}{.25cm}{\tabrotate{Abzinsung}} &  &  $p=\text{Zinsfuß}$  \\
    & &  & $i=\text{Zinssatz} \, (= p/100)$   \\
    & & & $n=\text{Gesamtlaufzeit in Jahren}$   \\
    \bottomrule
    \end{tabularx}
    \end{table}
    \end{flushleft}
    %
    \end{document}