I was trying to strike through text inside a beamer frame, using package soul and changing color to red. It is inside a tabular, but I've tried outside and couldn't make it work either. I also tried moving the \setstcolor{red} command around, with no success.
I was using the package soul, but any other solutions is fine, as long as it works.
MWE:
\documentclass{beamer}
\mode<presentation>
\usepackage{soul} % to striketrhourhg text
\begin{document}
\setstcolor{red}
\begin{frame}[c,fragile]
\begin{tabular}{ c c }
three & four \\
\st{one} \& \st {two} \\
\end{tabular}
\end{frame}
\end{document}


