I am trying to align equations in a tabular environment. Having read that align and align* don't work in tabular, I found this thread: Aligned equations in tables which suggests using the aligned environment.
It works, except that the equations are left aligned, where the answer provided states that the default is for them to be centered.
My MWE reproduces this result.
\documentclass[12pt]{report}
\usepackage{amsmath}
\usepackage{booktabs}
\begin{document}
\begin{table}
\centering
\sffamily
\begin{tabular}{l c c c c }
\toprule
& \multicolumn{4}{c}{Set 1} \\
& \textbf{Type A} & \textbf{Type B} & \textbf{Type C} & \textbf{Type D} \\
\midrule
Row 1 & 1 & 2 & 3 & 4 \\
Row 2 & 4 & 4 & 4 & 4 \\
\midrule
$\begin{aligned}
Eqn1 &= 1 \\
Eqn 2 &= 2 \\
Eqn 3 &= 3 \\
\end{aligned}$ \\
\bottomrule
\end{tabular}
\end{table}
\end{document}
a+b+c+d= 1and last one as3=a+b+c. However, equation system is aligned in the cell as determined column type, in you case, the widest equation will start at left border of cell. – Zarko Jan 03 '16 at 18:49