I'm writing a two-column document, and I want to display two sets of large equations floating at the top. Each equation set should be aligned within the same column, and only the two top equations should be numbered. Something like this:
a = (b,c) , where (1) a = (b,c) , where (2)
b = B b = B
c = C c = C
This is the best I could get:
\begin{figure*}
\begin{tabularx}{\textwidth}{@{}XX@{}}
\begin{align}
a\in(b,c) \label{eq1}, \text{where}\\
b=B \nonumber \\
c=C \nonumber
\end{align} &
\begin{align}
a\in(b,c) \label{eq1}, \text{where}\\
b=B \nonumber \\
c=C \nonumber
\end{align}
\end{tabularx}
\end{figure*}
That should have worked fine, but as you see, the two top equations have \in instead of =, so the alignment is messed up. I could just write &\in and &= below, but for some reason it seems to take that as the column separator of tabularx, and it won't compile.
How can I make this work?
{..}would hide the&s. Thanks, will take a look atminipage– Julián Urbano May 13 '13 at 11:16