I was looking for a way to produce an align of four equations in two rows and two columns, all of it boxed (as a summary of previous results). However, the standard \boxed, \gather approach doesn't work for me; it needs to be aligned. For some reason, I was unable to get \begin{align} to work properly: either it jumbled my equations, or it spread them wide throughout the page (i.e., too much horizontal space). Further, the box produced by empheq was too thin around, and the change proposed in the documentation (\fbox->\widefbox) failed to work.
I found an alternative solution, which I would like to share; if anyone knows of a more elegant way to produce (basically) the same output, I will certainly be interested.
Code: Select all
\begin{equation}
\addtolength{\fboxsep}{5pt}
\boxed{
\begin{gathered}
\begin{matrix}
\quad[\phi]_{\gamma\star}^T =[\phi]_{\beta\star}^T A^{-1}& [\phi]_{\beta\star}^T =[\phi]_{\gamma\star}^T A &\quad\forall\phi\in V\star \\
[x]_\gamma=A[x]_\beta &\quad [x]_\beta=A^{-1}[x]_\gamma &\quad \forall x\in V \\
\quad\gamma=\beta A^{-1} & \beta=\gamma A &
\end{matrix}\label{resumen}
\end{gathered}
}
\end{equation}
episanty