Hello everybody out there,
Consider the following minimal example:
\documentclass{article}
\begin{document}
Introductive text \dots\par
\begin{tabular}{cc|cc}
A & B123 & C & D\\
E & F123 & G & H
\end{tabular}
Text between tables \dots\par
\begin{tabular}{c|cc}
B & C & D\\
F & G & H
\end{tabular}
\end{document}
The letters C & D and G & H as well as the vertical seperating line of both tables should be align above one another and the longer table (in this case the first one) should be in the middle of the page, without making the first column of the second table as wide/long as the second column of the first table.
Finally, the document should look more or less like this:
Introductive text ...
A B123 | C D
E F123 | G H
Text between tables ...
B | C D
F | G H
Thanks in advance for your help.



