I've tried to add \begin{align} ... \end{align} inside of my tabular. This is my reference align inside of tabular. But, when I try the code on that link in beamer, i get a message like this
Misplaced \omit.
\math@cr@@@ ...@ @ne \add@amps \maxfields@ \omit \kern -\alignsep@ \iftag@ ... l.187 \end{frame} I expect to see \omit only after tab marks or the \cr of an alignment. Proceed, and I'll ignore this case.
What's wrong with this code with Beamer?
This is a small sample of my work
\documentclass[aspectratio=169]{beamer}
\usepackage[utf8]{inputenc}
\usepackage[edges]{forest}
\usetikzlibrary{fit}
\usepackage{amsmath,mathtools,graphicx,lmodern,xcolor,tcolorbox,multirow,multicol,colortbl,lipsum}
\begin{document}
\begin{frame}
\begin{tabular}{l|p{5cm}|}
A & B \\
& {\begin{align}
\pmb{
\begin{bmatrix}
z\\ \gamma
\end{bmatrix}}&=\pmb{\begin{bmatrix}
C\\B
\end{bmatrix}\gamma+\begin{bmatrix}
\varepsilon\\ \zeta
\end{bmatrix}}\\
\pmb{\begin{bmatrix}
z\\Wz
\end{bmatrix}}&=\pmb{\begin{bmatrix}
C\\B
\end{bmatrix}Wz+\begin{bmatrix}
\varepsilon\\ \zeta
\end{bmatrix}}\nonumber\\
\pmb{\begin{bmatrix}
I\\W
\end{bmatrix}z}&=\pmb{\begin{bmatrix}
C\\B
\end{bmatrix}Wz+\begin{bmatrix}
\varepsilon\\ \zeta
\end{bmatrix}}
\end{align}}
\end{tabular}
\end{frame}
\end{document}

colortblis completely perfect and bug free, but it may have some undocumented features..... – David Carlisle Jan 12 '22 at 15:24