ich hab enorme Problem mit der vertikalen Ausrichtung in Tabellen. Ich hab jetzt bereits zig Erklärungen hier und auf Texwelt gelesen, aber offensichtlich versteh ich das Konzept nach wie vor nicht.
Ausgangsbeispiel ist z.B. das:
\documentclass[12pt]{beamer} \usepackage[utf8]{inputenc} \begin{document} \begin{tabular}{ll} \textbf{Kommutativgesetz:} & $\begin{aligned} x+y &= y+x\\ x \cdot y &= y \cdot x \end{aligned}$ \end{tabular} \end{document}
\documentclass[12pt]{beamer} \usepackage[utf8]{inputenc} \begin{document} \begin{tabular}{ll} \textbf{Kommutativgesetz:} & \raisebox{\dimexpr-0.5\height\relax}{ $\begin{aligned} x+y &= y+x\\ x \cdot y &= y \cdot x \end{aligned}$} \end{tabular} \end{document}
Ein weiterer Versuch:
\documentclass[12pt]{beamer} \usepackage[utf8]{inputenc} \begin{document} \begin{tabular}{ll} \textbf{Kommutativgesetz:} & \raisebox{\dimexpr-0.5\ht\strutbox-\dp\strutbox\relax}{ $\begin{aligned} x+y &= y+x\\ x \cdot y &= y \cdot x \end{aligned}$} \end{tabular} \end{document}
\documentclass[12pt]{beamer} \usepackage[utf8]{inputenc} \begin{document} \begin{tabular}{ll} \textbf{Kommutativgesetz:} & \raisebox{\dimexpr-0.5\ht\strutbox-\dp\strutbox+0.5pt\relax}{ $\begin{aligned} x+y &= y+x\\ x \cdot y &= y \cdot x \end{aligned}$} \end{tabular} \end{document}

Gruß Tom