My understanding is that a separator belongs to the column on the left-hand side of it. So I used \multicolumn to eliminate it, but this shifts the alignment.
If you look at the attached example: how can I align C with A and D?
Thanks for your help.
Code: Select all
documentclass{report}
\usepackage{amsmath}
\begin{document}
\begin{tabular}{@{} r@{$\text{} := \text{}$}l @{}}
A & B \\
\multicolumn{1}{r@{}}{C} & \\
D & E
\end{tabular}
\end{document}