I´d like to use an environment from amsmath-package together with rowcolors from xcolor-package for an entry inside a tabu-environment.
Problem is: using \rowcolors the left bracket from Bmatrix is not shown.
I think it´s a kind of expanding-problem like in my post here.
Here is my MWE:
\documentclass{scrbook}
\usepackage{amsmath}
\usepackage{tabu}
\usepackage{longtable}
\usepackage[
table % Load the colortbl package
]{xcolor}
% table colors
\colorlet{tablebodycolor}{white!100}
\colorlet{tablerowcolor}{gray!10}
%
\begin{document}
%
\begin{table}
\rowcolors{2}{tablebodycolor}{tablerowcolor}
\begin{longtabu}{|cc|}
\hline
\bfseries column1 & \bfseries column2 \\
\hline
working & not working \\
a & $\begin{Bmatrix}M_{ij}\end{Bmatrix}$\\
\dots & \dots \\
\dots & \dots \\
\dots & \dots \\
\hline
\end{longtabu}
\end{table}
%
\end{document}
...matrixenvironments defined byamsmath. – barbara beeton Sep 09 '16 at 13:40