Consider a table like this:
| text1 | text2 |
|------------|--------------|
| a b c | AAA BBB CCC |
|------------|--------------|
| | aa bb cc |
|------------|--------------|
| AA BB CC | |
Now I want that a is aligned with AA, b with BB, c with CC and AAA with aa and so on.
Is it possible to do this in LaTeX (if possible with a simple and elegant syntax)?
I should add, that for my purpose the three tokens are generated by a command \foo for example instead of writing a b c directly into the table there is something like \foo{a'}{b'}{c'}.
