I have to typeset mathematics in table and want to avoid it being scaled down because I have to use inline math (\( \)). However, using \[ \] for example does not work. What is the best way to typeset tables with formulas, in such a way that the math is not scaled down?
MWE:
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\[ test \] % works
\begin{tabular}{cc}
\[ test \] & \[ test \]\\ % doesn't work
\end{tabular}
\end{document}
