I am trying to create a poster using TikZposter. I would like to have some math involving matrices in my poster. When I do:
\documentclass{tikzposter}
\usepackage{amsmath}
\usetheme{Default}
\begin{document}
\block{My Block}{
Some text\\
\begin{align*}
M+A=T+H
\end{align*}
}
\end{document}
everything works fine, but as soon as I try to include a matrix:
\documentclass{tikzposter}
\usepackage{amsmath}
\usetheme{Default}
\begin{document}
\block{My Block}{
Some text\\
\begin{align*}
\begin{matrix}
M & A \\
T & H
\end{matrix}
\end{align*}
}
\end{document}
MikTex complains with over a hundred error messages and does not generate an output. Am I doing something wrong? How can I fix this? Will I have to avoid using matrices all together? Thanks for any suggestion!