I have not been able to find a solution to the following problem in the ulem documentation. Could somebody help, please?
When I use a ulem macro to strike through some text in the tabular environment I would like the text to be aligned still. I think the following MWE demonstrates the problem.
Many thanks,
\documentclass{beamer}
\usepackage[normalem]{ulem}
\newcommand\tst{ % thick strike through
\bgroup
\markoverwith{\textcolor{red}{\rule[.8ex]{1pt}{0.8pt}}}
\ULon
}
\begin{document}
\begin{frame} \frametitle{Meeting Times}
\begin{tabular}{llll}
Lecture Hours: & &\tst{{Tue. 17h00}} & \tst{\emph{S117}}\\
& & Tue. 14h00 & \emph{KB118}\\
& & Thu. 16h00 & \emph{S117}\\[.5ex]
Tutorials & \textbf{3B} & Tue. 10h00 & \emph{SR2027} \\
& \tst{\textbf{3A}} & \tst{Tue. 14h00} & \tst{\emph{KB118}}\\[.5ex]
\end{tabular}
\end{frame}
\end{document}
