Here's a MWE
\documentclass{article} \usepackage{float} \usepackage{amsmath} \usepackage{array} \begin{document} \begin{table}[H] \def\arraystretch{1.5} \begin{tabular}{|c | c | c l} \cline{1-2} $A$ & $B$ & $\Longleftarrow$ & {\setlength\extrarowheight{-30pt} \begin{tabular}{@{}l@{}} Some \\ text \end{tabular}} \\ \cline{1-2} $C$ & $D$ & $\Longleftarrow$ & {\setlength\extrarowheight{-30pt}\begin{tabular}{@{}l@{}} Some other \\ text \end{tabular}} \\ \cline{1-2} \end{tabular} \end{table} \end{document} which produces
I would like to add arrows of this sort (proportionately sized, pardon my artistic inabilities)
What is the most efficient way of doing so without modifying the table code? Note that the table has to go into a beamer slide.





