Align Equations Over Multiple Tabular Rows
tabular
Balancing the horizontal space
The equal signs aren't aligned because the columns are being c
entered.
The horizontal center of the a = \sum_j b(c)
is not the at the equal sign but somewhere around the \sum
.
Just as the equal sign of your second aligned
environment is probably somewhere around the v
.
I introduced two macros that—with a little help—take care of that:
\leftlap[<opt>]{<widest part>}{<actual output>}
:<widest part>
will be\phantom
ed and is to set to the widest input that will be used at this (equation) column.<opt>
: There is some horizontal space before thealigned
environment. Empirically I could find that that space equals the amount of\,
, therefore it is automatically inserted. If this shouldn't happen set the optional argument to nothing (i.e. type[]
).
\rightlap{<widest part>}{<actual output>}
\newcommand*\leftlap[3][\,]{#1\hphantom{#2}\mathllap{#3}}
\newcommand*\rightlap[2]{\mathrlap{#2}\hphantom{#1}}
When the longest part appears in the sans-aligned
math
Then you use the macros in the aligned
environment:
\begin{tabular}{c}
$ vwxyzstu^{long} = x $ \\
$ \begin{aligned} \leftlap[\!]{vwxyzstu^{long}}{a} & = \rightlap{x}{b} \\
c & = d \end{aligned}$
\end{tabular}
Note the \!
in the optional argument. This removes the aforementioned horizontal space that is introduced by the aligned
environment. (\!
expands to the same horizontal space as \,
just negative.)
Output
One can easily see that the space between two tabular
lines is smaller than between two aligned
lines. This can be one of the reasons that the following solution (titled „Extra columns”) should be preferred and is a lot easier to maintain.
Code
\documentclass{article}
\usepackage{mathtools}
\usepackage{xcolor} % used only to show the phantomed stuff
\renewcommand\hphantom[1]{{\color[gray]{.6}#1}} % comment out!
\setlength\fboxsep{0pt} \setlength\fboxrule{.2pt} % for the \fboxes
\newcommand*\leftlap[3][\,]{#1\hphantom{#2}\mathllap{#3}}
\newcommand*\rightlap[2]{\mathrlap{#2}\hphantom{#1}}
\begin{document}
\begin{tabular}{cc} \hline
\multicolumn{2}{l}{Header 1} \\ \hline
\fbox{$\leftlap{klm(x)}{a} = \rightlap{fghij(y)}{\sum_j b(c)} $} & $\leftlap{abcde}{c} = \rightlap{vwxyzstu}{d} $ \\ \hline
\multicolumn{2}{l}{Header 2} \\ \hline
\fbox{$\begin{aligned} e & = fghij(y) \\
klm(x) & = nop \end{aligned}$} & $ \begin{aligned} qr & = vwxyzstu \\
abcde & = fghij \end{aligned}$
\end{tabular}
\end{document}
Output
Extra columns
If you do not want the equal sign to be the default, you can use
\newcolumntype{M}{R@{$\;$}L}
instead. This introduces the right space between the left side of the equation and the =
sign. The right part of the equation can then started as always, e.g. & = \sum_j
.
Code
\documentclass{article}
\usepackage{amsmath,array}
\newcolumntype{R}{>{$}r<{$}}
\newcolumntype{L}{>{$}l<{$}}
\newcolumntype{M}{R@{${}={}$}L}
\begin{document}
\begin{tabular}{MM}\hline
\multicolumn{4}{l}{Header 1} \\ \hline
a & \sum_j b(c) & c & d \\ \hline
\multicolumn{4}{l}{Header 2} \\ \hline
e & fghij(y) & qr & vwxyzstu \\
klm(x) & nop & abcde & fghij \\
\end{tabular}
\end{document}
Output
alignat
Another approach would be the direct use of one of amsmath
s *align*
environments.
The next step (if the \hline
s are needed) would be a TikZ \matrix
solution but I guess this would go a little bit too far.
Code
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{alignat*}{2}
\rlap{Header 1} \hphantom{klm(x)} & & & \\
a & = \textstyle \sum_j b(c) & c & = d \\
\rlap{Header 2} \hphantom{klm(x)} & & & \\
e & = fghij(y) & qr & = vwxyzstu \\
klm(x) & = nop & \hspace{\columnsep}abcde & = fghij \\
\end{alignat*}
\end{document}
Output
This is similar to the "Extra columns" proposal by Qrrbrbirlbel, but easier to manage.
\documentclass{article}
\usepackage{booktabs,array}
\newcolumntype{A}{ >{$} r <{$} @{} >{${}} l <{$} } % A for "align"
%% (1) "r" column in math mode: >{$} r <{$}
%% (2) no space: @{}
%% (3) "l" column in math mode, with
%% an empty subformula at the start: >{${}} l <{$}
\begin{document}
\begin{tabular}{AA}
\toprule
\multicolumn{4}{l}{Header 1} \\
\midrule
a &= \sum_j b(c) & c &= d \\
\midrule
\multicolumn{4}{l}{Header 2} \\
\midrule
e &= fghij(y) & qr &= vwxyzstu \\
klm(x) &= nop & abcde &< fghij \\
\bottomrule
\end{tabular}
\end{document}
The A
column type emulates a pair of align
columns, so for each of them the syntax is
<left> &= <right>
Using this is better as it doesn't hardwire the equals sign in the column type, as it can be seen in the last bit where an inequality is typeset just as an example.
This can also be adapted to tabular*
, with some more work.
\documentclass{article}
\usepackage{booktabs,array}
\newcolumntype{A}{
>{$}r<{$}
@{\extracolsep{0pt}}
>{${}} l <{$}
@{\extracolsep{\fill}}
} % A for "align"
%% (1) "r" column in math mode: >{$} r <{$}
%% (2) no space: @{}
%% (3) "l" column in math mode, with
%% an empty subformula at the start: >{${}} l <{$}
\begin{document}
\noindent
\begin{tabular*}{\textwidth}{
@{\hspace{\tabcolsep}\extracolsep{\fill}}
AAA
@{\hspace{\tabcolsep}}
}
\toprule
\multicolumn{4}{l}{Header 1} \\
\midrule
a &= \sum_j b(c) & c &= d & aaa &= bbb\\
\midrule
\multicolumn{4}{l}{Header 2} \\
\midrule
e &= fghij(y) & qr &= vwxyzstu & a &= b\\
klm(x) &= nop & abcde &< fghij & x &= 0\\
\bottomrule
\end{tabular*}
\end{document}